Skip to main content
GET
/
api
/
v1
/
health
curl "https://app.talkover.ai/api/v1/health"
{
  "status": "ok"
}

Health Check

Lightweight liveness probe. Returns 200 OK when the API is reachable. Use it for uptime monitors or load-balancer health checks.

Endpoint

GET /api/v1/health

Authentication

None. This endpoint is unauthenticated.

Examples

curl "https://app.talkover.ai/api/v1/health"

Response

{
  "status": "ok"
}

Notes

  • This is a liveness check only — it does not exercise downstream dependencies.
  • Safe to poll frequently; the endpoint is rate-limit exempt.