Total Access Docs
Openapi

Aggregate health check

Checks all services in parallel and returns an aggregated status. Recommended endpoint for monitoring systems and status pages. No authentication required. Returns HTTP 200 regardless of individual service status — check the `status` field in the response.

GET
/api/v1/health/all

Checks all services in parallel and returns an aggregated status. Recommended endpoint for monitoring systems and status pages.

No authentication required. Returns HTTP 200 regardless of individual service status — check the status field in the response.

Response Body

application/json

curl -X GET "https://example.com/api/v1/health/all"
{  "status": "healthy",  "timestamp": "2019-08-24T14:15:22Z",  "total_latency_ms": 0,  "services": [    {      "service": "string",      "status": "healthy",      "latency_ms": 0,      "error": "string"    }  ],  "summary": {    "healthy": 0,    "degraded": 0,    "down": 0,    "disabled": 0,    "total": 0  }}