v3

latestOpenAPI 3.0.3raw.githubusercontent.com2026-04-10101545.6 KB
health

Basic health check

Returns {"status":"ok"} (or its Protobuf equivalent) whenever the HTTP server is accepting connections. Performs no I/O and never queries downstream dependencies.

Content negotiation: Send Accept: application/x-protobuf to receive a Protobuf-encoded BasicHealthResponse; omit or send any other value for JSON.

get/health

Headers

Accept'application/json' | 'application/x-protobuf'

Response format selector. Set to application/x-protobuf for Protobuf encoding; any other value (or absent) returns JSON.

Response

Service is accepting connections.

statusstring required

Always "ok" when the HTTP server is accepting connections.

Example response

{
  "status": "ok"
}
All 10 operations