Skip to main content
GET
/
api
/
health
Health check
curl --request GET \
  --url https://api.example.com/api/health
{
  "status": "<string>",
  "version": "<string>",
  "uptime_seconds": 123,
  "is_healthy": true,
  "node_count": 123,
  "edge_count": 123,
  "processing_rate": 123
}

Response

status
string
One of: "healthy", "degraded", "unhealthy".
version
string
Server version.
uptime_seconds
integer
Server uptime in seconds.
is_healthy
boolean
Overall health status.
node_count
integer
Current graph node count.
edge_count
integer
Current graph edge count.
processing_rate
number
Events processed per second.
{
  "status": "healthy",
  "version": "1.3.0",
  "uptime_seconds": 3600,
  "is_healthy": true,
  "node_count": 15420,
  "edge_count": 32801,
  "processing_rate": 125.5
}