Skip to main content
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).
curl -s https://app.ravn.exchange/api/v1/health

Response

status
string
ok or degraded.
venues
array
[{ id, name, healthy }] per venue.
{
  "data": {
    "status": "ok",
    "venues": [
      { "id": "cow", "name": "CoW Protocol", "healthy": true },
      { "id": "near_intents", "name": "NEAR Intents", "healthy": true }
    ]
  }
}