Skip to main content
GET
/
health-check
Health Check
curl --request GET \
  --url https://api.manka.ai/v1/api/health-check \
  --header 'Authorization: Bearer <token>'
{
  "status": "ok",
  "latency": "12ms"
}

Documentation Index

Fetch the complete documentation index at: https://docs.manka.tz/llms.txt

Use this file to discover all available pages before exploring further.

No authentication is required. Use this endpoint as a liveness probe or to confirm connectivity before issuing authenticated requests.

Response

status
string
required
Always "ok" when the service is healthy. The exact string should not be parsed — it may change.
latency
string
required
Round-trip latency to the underlying datastore, e.g. "12ms".
{
  "status": "ok",
  "latency": "12ms"
}

Status codes

StatusMeaning
200API is healthy
503Database unreachable

Example

curl https://api.manka.ai/v1/api/health-check