DocumentationHealth API

Health API

Reference for health and version endpoints.

GET/v1/health

Health check

Returns service health and dependency status.

{
  "result": {
    "status": "ok",
    "uptime_sec": 12345,
    "dependencies": { "redis": "ok" }
  }
}
GET/v1/version

Build 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
Did this page help you?