Aviation Data

Airport timezone

Just the timezone field, for a caller that does not need the rest of the airport record.

GET/v1/aviation/airports/{id}/timezoneRequires X-API-Key
The single-field counterpart to the timezone value already on the full airport record — useful when all a client needs is the IANA zone name and fetching the whole airport is overkill.

Request example

curl --request GET \
  --url https://api.norba.io/v1/aviation/airports/{id}/timezone \
  --header "X-API-Key: $NORBA_KEY"

Response example

Response example
{
  "data": {
    "airport_id": "mad",
    "timezone": "Europe/Madrid"
  },
  "meta": {
    "request_id": "2c231a657c083214"
  },
  "errors": []
}

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

idstringRequired
IATA, ICAO or internal id.
Example: MAD
GET /v1/aviation/airports/{id}/timezone — Airport timezone