/ Endpoints
Base URL: /
Available Endpoints
/health
Endpoint: GET /health
Status: Unstable
Description: Health check endpoint for load balancer monitoring.
Returns HTTP 200 when the indexer is ready to serve requests, or HTTP 503 when initial block download is in progress.
Response when healthy (HTTP 200):
{
"status": "healthy",
"indexed_height": 880000,
"chain_tip": 880000,
"version": "0.2.0"
}
Response when syncing (HTTP 503):
{
"status": "syncing",
"indexed_height": 850000,
"chain_tip": 880000,
"version": "0.2.0"
}
Example URI: /health