GET
/
v1
/
health
Healthcheck
curl --request GET \
  --url https://api.mixpeek.com/v1/health
{
  "status": "OK",
  "data": {
    "redis": true,
    "mongodb": true,
    "qdrant": true,
    "celery": true,
    "engine": true
  },
  "errors": {
    "redis": "<string>",
    "mongodb": "<string>",
    "qdrant": "<string>",
    "celery": "<string>",
    "engine": "<string>"
  }
}

Response

Successful Response

Health check response model.

status
enum<string>
required

Overall API health status

Available options:
OK,
DEGRADED
data
object
required

Per-service health status flags

errors
object | null

Optional per-service error messages when a service check fails Optional error messages for dependent services (present when a check fails).