DocumentationHealth API
Health API
Reference for health and version endpoints.
GET
/v1/healthHealth check
Returns service health and dependency status.
{
"result": {
"status": "ok",
"uptime_sec": 12345,
"dependencies": { "redis": "ok" }
}
}
GET
/v1/versionBuild info
Returns version, commit, and build time.
{
"result": {
"version": "0.1.0",
"commit": "abc123",
"build_time": "2026-01-20T10:00:00Z"
}
}
Updated 1 day ago