> ## Documentation Index
> Fetch the complete documentation index at: https://quintsecurity.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Health Check

> Liveness check endpoint. Returns a simple status indicating whether the API service is running. No authentication required.

<Info>
  This endpoint does **not** require authentication. Use it for load balancer health probes and uptime monitors.
</Info>

## Response

<ResponseField name="status" type="string">
  Service status. Returns `ok` when the API is operational.
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.quintai.dev/health
  ```

  ```python Python theme={null}
  import requests

  response = requests.get("https://api.quintai.dev/health")
  print(response.json())
  ```
</RequestExample>

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