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

# GET /health

> Per-venue liveness.

Reports overall status plus each venue's health, so you can surface degraded routing. Always
returns `200` — read the `status` field, not the HTTP code, to gate. This endpoint is public
(no key required).

```bash theme={null}
curl -s https://app.ravn.exchange/api/v1/health
```

## Response

<ResponseField name="status" type="string">`ok` or `degraded`.</ResponseField>
<ResponseField name="venues" type="array">`[{ id, name, healthy }]` per venue.</ResponseField>

```json theme={null}
{
  "data": {
    "status": "ok",
    "venues": [
      { "id": "cow", "name": "CoW Protocol", "healthy": true },
      { "id": "near_intents", "name": "NEAR Intents", "healthy": true }
    ]
  }
}
```
