Request
No parameters, no body, no auth.Response
Use cases
- Smoke testing before running a stake flow.
- Deploy verification by comparing
commitagainst your expected SHA. - Clock drift checks by comparing
timeagainst your local clock.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Liveness probe. Confirms the API is wired and reports the deployed commit.
GET https://hubra.app/api/v1/health
curl https://hubra.app/api/v1/health
{
"ok": true,
"service": "hubra-agent-api",
"version": "v1",
"commit": "<git sha or 'unknown'>",
"time": "2026-05-07T07:39:30.123Z"
}
| Field | Type | Description |
|---|---|---|
ok | boolean | Always true when this endpoint responds; if you cannot reach the API at all, you will get a network error instead. |
service | string | Always "hubra-agent-api". |
version | string | API surface version. Always "v1" for this endpoint. |
commit | string | Deployed commit SHA; "unknown" in dev or when not injected by the platform. |
time | string | Server time, ISO 8601. |
commit against your expected SHA.time against your local clock.