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

Documentation Index

Fetch the complete documentation index at: https://docs.talkover.ai/llms.txt

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

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.