Status

Use the status endpoint for uptime checks and smoke tests. It is public, read-only, and does not expose account or shipment data.

GET/api/v1/status

Simple public health check.

Response schema

Successful response

NameTypeRequiredDescription
data.statusstringYesStatic health value. The current implementation returns "ok".
Shell
curl https://corvo.to/api/v1/status
Response200Healthy service
{
  "data": {
    "status": "ok"
  }
}