Response
Returns{ "items": [ProviderHealthRecord] }.
Array of
ProviderHealthRecord objects, one per known provider.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Retrieve health metrics for all providers including online status, latency, and success/failure counts derived from invocation history.
{ "items": [ProviderHealthRecord] }.
ProviderHealthRecord objects, one per known provider.Show ProviderHealthRecord
unknown, online, degraded, or offline.[0.0, 1.0].curl http://your-node:8042/v1/health/providers
{
"items": [
{
"provider_id": "acme-labs",
"status": "online",
"last_seen_at": "2025-01-15T10:30:02Z",
"last_latency_ms": 298,
"success_count": 1204,
"failure_count": 11,
"success_rate": 0.9909,
"updated_at": "2025-01-15T10:30:02Z"
},
{
"provider_id": "beta-provider",
"status": "degraded",
"last_seen_at": "2025-01-15T09:45:00Z",
"last_latency_ms": 4200,
"success_count": 88,
"failure_count": 32,
"success_rate": 0.7333,
"updated_at": "2025-01-15T09:45:00Z"
}
]
}