GET
/
Airports
Airport reference data
curl --request GET \
  --url https://reporting-dev.cteleport.com/v2/odata/Airports \
  --header 'Authorization: Basic <encoded-value>'
{
  "@odata.context": "<string>",
  "value": [
    {
      "Iata": "<string>",
      "Name": "<string>",
      "City": "<string>",
      "CityIata": "<string>",
      "Country": "<string>",
      "CountryIata": "<string>",
      "RegionName": "<string>",
      "Longitude": 123,
      "Latitude": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

HTTP Basic Authentication using reporting credentials provided by C Teleport. Username and password are issued per-customer — contact api@cteleport.com to obtain yours.

Query Parameters

$filter
string

OData filter expression. Examples:

  • bookingDate gt 2026-01-01
  • status eq 'confirmed'
  • carrier eq 'KL' and departureDate gt 2026-01-01
$select
string

Comma-separated list of fields to include in the response.

$orderby
string

OData ordering expression. Examples:

  • bookingDate desc
  • totalCost asc
$top
integer

Maximum number of records to return (default varies by endpoint).

$skip
integer

Number of records to skip for pagination.

$count
boolean

Set to true to include total record count in the response.

Response

Airport reference data.

@odata.context
string

OData metadata context URL.

value
object[]