Skip to Content
Aionis v0.3.2 is the current Runtime baseline for SDK/API hosts, MCP clients, plugins, Substrate-backed recall, and self-managed agent loops.

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/health

SDK

const health = await aionis.health();

Response

The response is a compact Runtime status object. Important fields commonly include:

FieldMeaning
okWhether the Runtime health endpoint is responding.
runtimeRuntime identity and edition information.
storageLocal store status.
embeddingsConfigured embedding provider and availability.

Probe aliases

The server also exposes lightweight readiness-style endpoints for local process checks:

/healthz /readyz

Use /health for developer setup and integration checks.