> ## 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

> Service liveness probe

# 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

<RequestExample>
  ```bash theme={null}
  curl "https://app.talkover.ai/api/v1/health"
  ```
</RequestExample>

## Response

<ResponseExample>
  ```json theme={null}
  {
    "status": "ok"
  }
  ```
</ResponseExample>

## Notes

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