GET /v1/health
Unauthenticated liveness. The only endpoint that requires no API key — usable by load balancers, uptime probes, and an integration deciding whether the runtime is back after a degraded-mode episode.
GET {base_url}/v1/health
Response
| Status | Body | Meaning |
|---|---|---|
200 | {"status": "ok", "version": "..."} | The runtime can serve decisions |
503 | {"status": "error", ...} | It cannot — treat as unreachable |
Example
curl -s $OGR_RUNTIME/v1/health
{ "status": "ok", "version": "0.8.1" }
"Healthy" means can serve decisions — not merely "process is up". A runtime that is up but cannot reach its detectors or storage should answer 503, so integrations apply their configured fail mode instead of timing out per call.