Returns the health status of all SnapAPI services. No authentication required.
/v1/healthAuthorization β This endpoint requires an API key. Pass it in the api-key header on every request. See the quickstart
All services healthy
| Name | Type | Description |
|---|---|---|
status | string | |
checks | object | |
worker | string | |
upstream | string | |
backend | string | |
kv | string | |
timestamp | string |
curl -X GET "https://api.snapapi.ai/v1/health" \
-H "api-key: YOUR_API_KEY"{
"status": "healthy",
"checks": {
"worker": "ok",
"upstream": "ok",
"backend": "ok",
"kv": "ok"
},
"timestamp": "2026-04-28T10:00:00Z"
}