Skip to main content

Health

GET /api/v1/health is the platform's single readiness probe. It is a Universal endpoint — not owned by any module — and the only endpoint that requires no API key. That makes it safe to wire into third-party uptime monitors (Pingdom, Better Uptime, UptimeRobot, …) without storing a credential there.

curl "https://platform.zenhire.ai/api/v1/health"

A healthy platform returns 200:

{
"status": "ok",
"timestamp": "2026-05-29T10:00:00.000Z"
}

Use it for liveness checks, not as a substitute for handling per-request errors — a healthy platform can still reject an individual call (bad input, insufficient credits, rate limit). For those, see the error envelope.

See the full schema + interactive "Try it" console at GET /api/v1/health.