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/statusSimple public health check.
Authentication and usage
No authentication required. This route does not apply an application-level rate limit in current code, although upstream infrastructure may still enforce generic protections.
Response schema
Successful response
| Name | Type | Required | Description |
|---|---|---|---|
| data.status | string | Yes | Static health value. The current implementation returns "ok". |
curl https://corvo.to/api/v1/statusResponse200Healthy service
{
"data": {
"status": "ok"
}
}Error behavior
There is no route-specific JSON error path for this endpoint. If a status check fails, the failure is coming from platform or network infrastructure rather than the handler itself.