health
Detailed health report
Returns a comprehensive health report including service version, process uptime, and storage backend connectivity status.
Content negotiation: Accept: application/x-protobuf returns a Protobuf-encoded DetailedHealthResponse; otherwise JSON.
Note: A 200 OK does not guarantee all dependencies are healthy. Inspect storage.connected to confirm the backend is reachable.
get/health/detailed
Headers
Accept'application/json' | 'application/x-protobuf'
Response
Full health report.
Example response
{
"status": "ok",
"version": "0.1.0",
"timestamp": "2026-02-25T12:00:00Z",
"uptime_seconds": 86400,
"storage": {
"status": "healthy",
"connected": true
}
}