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

> System health and readiness endpoints

# Health Check Endpoints

Health checks do not require authentication. They verify that the Quint cloud API is operational.

## Endpoints

<CardGroup cols={2}>
  <Card title="GET /health" href="/api/endpoint/get-health">
    Liveness check returning `{"status": "ok"}`
  </Card>

  <Card title="GET /ready" href="/api/endpoint/get-ready">
    Readiness check returning `{"status": "ready"}`
  </Card>
</CardGroup>

## Liveness Check

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

```json theme={null}
{"status": "ok"}
```

Use this for load balancer health probes and uptime monitoring.

## Readiness Check

```bash theme={null}
curl https://api.quintai.dev/ready
```

```json theme={null}
{"status": "ready"}
```

The readiness endpoint confirms the API is ready to accept traffic, including that database connections and dependencies are available.
