Health
Liveness and a build marker. Writes nothing.
GET /v1/health
Liveness and a build marker. No authentication, no scope. Writes nothing: no sweep, no fallback clock, no usage event. Its database probe is a SELECT 1 on its own connection; a failure is 503 naming which check failed and never why. Rate-limited per IP.
Scope: none — unauthenticated
Responses
200 — Alive.
| Field | Type | Required | Notes |
|---|---|---|---|
ok | boolean | yes | |
version | "v1" | yes | |
time | date-time | yes | |
build | string | The deployed build marker — a commit or build id (02 §8.1). |
{
"ok": true,
"version": "v1",
"time": "2026-03-11T18:11:44Z",
"build": "070e121"
}503 — A dependency failed. Which one, never why.
| Field | Type | Required | Notes |
|---|---|---|---|
ok | boolean | yes | |
db | boolean |
{
"ok": false,
"db": false
}Errors: rate_limited (429)
cURL
curl -sS https://<host>/v1/health