GET /health
GET

/v1/health

Service health check with per-service latency

AuthNone — works without a key

Request

GEThttps://api.xrpl.to/v1/health
curl 'https://api.xrpl.to/v1/health'

Response

200Example response2 ms · just now · 0.3 KB · 21 lines
https://api.xrpl.to/v1/health
{
  "status": "healthy",
  "timestamp": "2026-09-21T07:30:43.725Z",
  "version": "1.20.0",
  "uptime": 110,
  "services": {
    "database": {
      "status": "up",
      "latency": 1
    },
    "rippled": {
      "status": "up",
      "latency": 2,
      "ledger": 107131957
    },
    "cache": {
      "status": "up",
      "latency": 1
    }
  }
}
Shapeas documented
{
  status: healthy|degraded,
  timestamp,
  version,
  uptime (s),
  services: {
    database,
    rippled,
    cache: { status, latency }
  }
}

What it does

Service health check with per-service latency

OpenAPI