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

# GET /health

> Check the API status

A simple liveness endpoint. Returns `200 OK` if the API is up.

```
GET https://api.snipex.dev/health
```

No authentication required.

## Response

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

## Example

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

Useful for uptime monitoring, health checks in deployment pipelines, or confirming connectivity before sending requests.
