Health
GET /health
Check that the Runtime process is reachable and see which providers are configured.
Example
curl -s http://127.0.0.1:3001/healthSDK
const health = await aionis.health();Response
The response is a compact Runtime status object. Important fields commonly include:
| Field | Meaning |
|---|---|
ok | Whether the Runtime health endpoint is responding. |
runtime | Runtime identity and edition information. |
storage | Local store status. |
embeddings | Configured embedding provider and availability. |
Probe aliases
The server also exposes lightweight readiness-style endpoints for local process checks:
/healthz
/readyzUse /health for developer setup and integration checks.