Monitoring
Connector health board
Which airline connectors are reachable right now.
GET
/v1/monitoring/airlinesRequires X-API-KeyPer-connector health for every registered airline, refreshed on a fixed schedule by the monitoring package rather than probed on request.The check is deliberately cheap — typically a token refresh — and never consumes your look-to-book quota, so polling this is safe in a way that polling flight search is not.Use it to decide whether an empty search result means "no availability" or "the carrier is unreachable" — a distinction flight search itself cannot make.> Registered only when connector monitoring is enabled in the deployment; otherwise the route is absent and returns
404.Request example
curl --request GET \
--url https://api.norba.io/v1/monitoring/airlines \
--header "X-API-Key: $NORBA_KEY"Response example
Response example
{
"airlines": [
{
"airline_code": "AA",
"status": "up",
"last_checked": "2026-08-14T16:40:32.02735Z",
"latency_ms": 116,
"error_rate": 0,
"error_count": 0,
"success_count": 12
}
]
}