Check API health
GET
/healthRead the API liveness response without sending credentials.
Authentication
This endpoint is public. No API key is required.
Authentication and API keys →Responses
200 Response schema
application/json
ok
booleanrequireddb
stringrequiredAllowed values: "ok", "error"
version
stringrequiredView complete response schema
HTTP 200 schema
{
"type": "object",
"properties": {
"ok": {
"type": "boolean"
},
"db": {
"type": "string",
"enum": [
"ok",
"error"
]
},
"version": {
"type": "string"
}
},
"required": [
"ok",
"db",
"version"
],
"additionalProperties": false
}Authentication and validation failures use the shared error envelope. Save the request ID when diagnosing a failed call.
Build the surrounding workflow
Read the api health guide for ordering, verification and recovery. Browse the other api health endpoints when you need the next operation.