Skip to main content
GET
/
health
/
detailed
Get detailed health information
curl --request GET \
  --url http://localhost:3000/health/detailed
{
  "status": "healthy",
  "timestamp": "2023-11-07T05:31:56Z",
  "response_time_ms": 123,
  "checks": {
    "database": "ok",
    "registration": "ok",
    "sync": "ok",
    "services": "ok"
  },
  "node_info": {
    "id": "<string>",
    "region": "<string>",
    "zone": "<string>",
    "isRegistered": true
  }
}

Authorizations

X-API-Key
string
header
required

API key for authentication. Format: zdb_your_api_key_here

Response

Detailed health information

status
enum<string>
Available options:
healthy,
degraded,
unhealthy
timestamp
string<date-time>
response_time_ms
integer
checks
object
node_info
object