Monitoring

Connector health for one airline

Health for a single connector.

GET/v1/monitoring/airlines/{iataCode}Requires X-API-Key
The same health record as the board above, for one carrier, addressed by IATA code — returned bare, not wrapped in an airlines array.

Request example

curl --request GET \
  --url https://api.norba.io/v1/monitoring/airlines/{iataCode} \
  --header "X-API-Key: $NORBA_KEY"

Response example

Response example
{
  "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
}

Authorization

X-API-KeystringRequired
Opaque API key issued from the Norba dashboard. Sent on every request as the X-API-Key HTTP header. Missing or invalid keys are rejected with 401 Unauthorized.

Path parameters

iataCodestringRequired
Two-letter IATA airline code.
Example: AA
GET /v1/monitoring/airlines/{iataCode} | Norba API