System Health โ
Detailed service health snapshots for the running deployment. Where Server Heartbeat only tells you the API is reachable, these endpoints give you the internal picture โ per-service status, last-checked timestamps, and any error states.
Scopes โ
| Scope | Reach |
|---|---|
admin | Reading all service health snapshots. |
Endpoints โ
Get All Service Health Snapshots โ
GET /api/admin/health/
Returns a snapshot for every monitored service (database, queue, mail, storage, etc.).
Required scope: admin ยท also accepts API key
Response 200 โ map of service name โ snapshot.
Get Service Health Snapshot โ
GET /api/admin/health/{full_service_name}
Returns the detailed health snapshot for a single service.
Required scope: admin ยท also accepts API key
Path parameters
| Name | Type | Required | Description |
|---|---|---|---|
full_service_name | string | yes | Fully qualified service name (see Get All Service Health Snapshots for valid values). |
Response 200 โ HealthSnapshotRead
See also โ
- Server Heartbeat โ unauthenticated liveness probe.
- Logging โบ System Logs โ long-form logs for diagnosing health issues.
