GET/v1/flights/airlines

Fluggesellschaften auflisten

Lists airline metadata available to flight integrations, including IATA codes, logos and policy URLs when available.

Lists airline metadata available to flight integrations, including IATA codes, logos and policy URLs when available.

Endpoint

MethodPathAuth
GET/v1/flights/airlinesRequired API key
Required headers:
HeaderDescription
AuthorizationBearer <secret_key>. The secret is shown only once when the credential is created.
X-Travelandz-Id<public_key>:<profile_code>. The profile_code is the dp_-prefixed Developer Profile code shown in your dashboard. This binds the request to a profile and credential.
Content-TypeUse application/json for requests with a body.

Success Response

Returns airline ids, names, IATA codes, logos and policy URLs.

Response Body Schema

PropertyTypeDetailsRequiredNotes
arrayYes-
idstringYes-
namestringYes-
iata_codestringNullable-
logo_symbol_urlstringNullable-
logo_lockup_urlstringNullable-
conditions_of_carriage_urlstringNullable-

Operational Notes

Airline metadata is source-backed and can vary by environment and enabled integrations.

Example

bash
bash
curl https://api.sandbox.travelandz.com/v1/flights/airlines \
  -H "Authorization: Bearer $TRAVELANDZ_SECRET_KEY" \
  -H "X-Travelandz-Id: $TRAVELANDZ_PUBLIC_KEY:$TRAVELANDZ_PROFILE_CODE"