Skip to main content
GET
/
health
Health Check
curl --request GET \
  --url https://api.example.com/health
{
  "service": "<string>",
  "version": "<string>",
  "agent_ready": true,
  "agent_name": "<string>",
  "reason": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.idun-group.com/llms.txt

Use this file to discover all available pages before exploring further.

Response

200 - application/json

Successful Response

Response shape for /health.

reason is only emitted when an assembly failure handler set app.state.boot_error; the route uses response_model_exclude_unset so the field stays absent (not null) on the happy path.

status
enum<string>
required
Available options:
ok,
degraded
service
string
required
version
string
required
agent_ready
boolean
required
agent_name
string | null
required
reason
string | null
Last modified on May 22, 2026