Skip to main content

Overview

Flight Information Display Systems are used by airports to display real-time flight information for the ease of passengers. Flight Information Display Systems are mostly deployed at airport lounges, terminals, food courts, hotels, duty free area and wherever passengers can be present on the airport premises.


SITA Flight Information Display API, allows the users to let go of the pain and effort of integrating with various data sources to display relevant information on Flight Information Display Systems. SITA Flight Information Display API provides a one-stop solution to empower Flight Information Display Systems with real-time data being flexible enough to customize it according to end-user.

See our 'Try it Now' page for more details.

 

Airline Icons

We also make icons available to enable you to create a graphical display of the Airline Icons. See documentation for a full list.

SITA Flight Information Display API Service

 

1 Revision History

DateVersionDescription

27 August 2020

1.0

Initial version

13 September 2021

1.1

Changed FIDS to SITA Flight Information Display API

03 August 2023

1.2

Added rate limit and OAuth

2 Technical Documentation

SITA Flight Information Display API is a REST based service which provides information about flight departures and arrivals around the world.

To access the APIs you will need an API key. These can be obtained by creating an account on https://www.developer.aero/ and registering your interest for access to the API.

2.1 Authentication

To access the APIs an OAuth access token must be supplied. To obtain an OAuth token a request must be sent to the https://sitaopen.api.aero/fids/oauth/token endpoint using the OAuth2 Client Credential flow, using your API key as the client_id, and your consumer secret as the client_secret.

Once an access token has been obtained, it can be placed in the Authorization HTTP header as a bearer token, for example:

Authorization: Bearer eyJ92dNw9dka...

2.2 Security

  • All incoming requests will be REST over HTTPS.
  • Users are authenticated using their OAuth token.
  • Certain response payload elements will be filtered based on permissions associated with their token.

2.3 Rate Limiting

All incoming requests are subject to a rate limiting restriction. The following headers are included in HTTP responses:

HeaderDescription

X-RateLimit-Limit

The total number of requests allowed in the current time window

X-RateLimit-Remaining

The number of requests left for the current time window

X-RateLimit-Policy

The policy describing how many request per time window are allowed

X-RateLimit-Reset

The number of seconds remaining in the current time window. Header not displayed after rate limit has been exceeded

retry-after

The epoch timestamp at which the current rate limit window resets. Header only displayed after rate limit has been exceeded

2.4 Error Response

Response fields

PathTypeDescription

errors

Object

Object that holds the error information

errors.error[]

Array

Array of errors

errors.error[].code

Number

Flight Information Display API Internal Error Code

errors.error[].description

String

Error Description

errors.error[].invalidParam

String

Indicates the invalid query parameter

HTTP response

HTTP/1.1 400 Bad Request
                        Content-Type: application/json
                        Content-Length: 159
                        {
                          "errors" : {
                            "error" : [ {
                              "description" : "Error Description",
                              "code" : 9999,
                              "invalidParam" : "parameterName"
                            } ]
                          }
                        }

3 SITA Flight Information Display API Service

This section describes each SITA Flight Information Display API service. Detailed API structure, example requests and responses, JSON schema for request (where appropriate) and responses, and error response codes and formats are included.

3.1 V1

3.4.3 Get Flights by Airport

Path parameters
Table 1. /v1/{airportCode}/{arrivalDeparture}
ParameterDescription

airportCode

3-character airport IATA code or 4-character airport ICAO code

arrivalDeparture

1-character direction indicator (A/D)

Request parameters

Snippet request-parameters not found for operation::V1DocumentationTest/getFlightsByAirport/1

Request headers
NameDescription

Content-Type

Content type of this request.

Authorization

Authorization header that contains the access token.

Response fields
PathTypeDescription

flightRecords[]

Array

Data

flightRecords[].actualDate

String

Actual Date

flightRecords[].actualTime

String

Actual Time

flightRecords[].airlineCode

String

Airline Code

flightRecords[].airlineIcon[]

Array

airline icons from both operating and maketing carriers

flightRecords[].airlineName

String

Airline Name

flightRecords[].airportCode

String

Airport Code

flightRecords[].airportName

String

Airport Name

flightRecords[].baggage

String

Baggage

flightRecords[].codeShare

Object

Code Share Indicator

flightRecords[].codeSharesAsCodes[]

Array

Code Shares As Codes

flightRecords[].codeSharesAsNames[]

Array

Code Shares As Names

flightRecords[].delayed

Object

Delayed

flightRecords[].destinationAirportCode

String

Destination Airport Code

flightRecords[].destinationAirportName

String

Destination Airport Name

flightRecords[].destinationCountryCode

String

Destination Country Code

flightRecords[].estimatedDate

String

Estimated Date

flightRecords[].estimatedTime

String

Estimated Time

flightRecords[].flight

String

Flight

flightRecords[].flightNumber

String

Flight Number

flightRecords[].gate

String

Gate

flightRecords[].operatedFlightNumber

String

Operated Flight Number

flightRecords[].operatingAirlineCode

String

Operating Airline Code

flightRecords[].operatingAirlineName

String

Operating Airline Name

flightRecords[].originAirportCode

String

Origin Airport Code

flightRecords[].originAirportName

String

Origin Airport Name

flightRecords[].originCountryCode

String

Origin Country Code

flightRecords[].scheduledDate

String

Scheduled Date

flightRecords[].scheduledTime

String

Scheduled Time

flightRecords[].status

String

Status

flightRecords[].statusCode

String

Status Code

flightRecords[].temperatureC

Object

Temperature C

flightRecords[].temperatureF

Object

Temperature F

flightRecords[].terminal

String

Terminal

flightRecords[].weather

String

Weather

Curl request
$ curl 'https://sitaopen.api.aero/fids/v1/AMS/A' -i -X GET \
                                -H 'Content-Type: application/json' \
                                -H 'Authorization: Bearer eyJkb2N1bWVudGF0aW9uIiwidG9rZW4ifQ...'
HTTP response
HTTP/1.1 200 OK
                            Content-Type: application/json
                            Content-Length: 10262
                            {
                              "flightRecords" : [ {
                                "status" : "Arrived",
                                "statusCode" : "AR",
                                "airlineName" : "KLM Royal Dutch Airlines",
                                "airlineCode" : "KL",
                                "flightNumber" : "1386",
                                "codeShare" : false,
                                "operatedFlightNumber" : "1386",
                                "operatingAirlineName" : "KLM Royal Dutch Airlines",
                                "operatingAirlineCode" : "KL",
                                "originAirportName" : "Boryspil International Airport",
                                "originAirportCode" : "KBP",
                                "originCountryCode" : "UA",
                                "destinationAirportName" : "Amsterdam Airport Schiphol",
                                "destinationAirportCode" : "AMS",
                                "destinationCountryCode" : "NL",
                                "flight" : "KL 1386",
                                "delayed" : false,
                                "airportCode" : "AMS",
                                "airportName" : "Amsterdam Airport Schiphol",
                                "gate" : "A9",
                                "terminal" : "3",
                                "scheduledTime" : "15:00:00",
                                "scheduledDate" : "2020-08-20",
                                "actualTime" : "14:44:00",
                                "actualDate" : "2020-08-20",
                                "codeSharesAsNames" : [ "Ukraine International Airlines 9386", "Delta Air Lines 9473" ],
                                "codeSharesAsCodes" : [ "PS 9386", "DL 9473" ],
                                "weather" : "Mostly sunny",
                                "temperatureC" : 26.0,
                                "temperatureF" : 78.8
                              }, {
                                "status" : "Arrived",
                                "statusCode" : "AR",
                                "airlineName" : "Delta Air Lines",
                                "airlineCode" : "DL",
                                "flightNumber" : "9598",
                                "codeShare" : true,
                                "operatedFlightNumber" : "1146",
                                "operatingAirlineName" : "KLM Royal Dutch Airlines",
                                "operatingAirlineCode" : "KL",
                                "originAirportName" : "Oslo Gardermoen Airport",
                                "originAirportCode" : "OSL",
                                "originCountryCode" : "NO",
                                "destinationAirportName" : "Amsterdam Airport Schiphol",
                                "destinationAirportCode" : "AMS",
                                "destinationCountryCode" : "NL",
                                "flight" : "DL 9598",
                                "delayed" : false,
                                "airportCode" : "AMS",
                                "airportName" : "Amsterdam Airport Schiphol",
                                "gate" : "A4",
                                "terminal" : "2",
                                "scheduledTime" : "15:00:00",
                                "scheduledDate" : "2020-08-20",
                                "actualTime" : "15:03:00",
                                "actualDate" : "2020-08-20",
                                "weather" : "Mostly sunny",
                                "temperatureC" : 26.0,
                                "temperatureF" : 78.8
                              }, {
                                "status" : "Arrived",
                                "statusCode" : "AR",
                                "airlineName" : "KLM Royal Dutch Airlines",
                                "airlineCode" : "KL",
                                "flightNumber" : "1386",
                                "codeShare" : false,
                                "operatedFlightNumber" : "1386",
                                "operatingAirlineName" : "KLM Royal Dutch Airlines",
                                "operatingAirlineCode" : "KL",
                                "originAirportName" : "Boryspil International Airport",
                                "originAirportCode" : "KBP",
                                "originCountryCode" : "UA",
                                "destinationAirportName" : "Amsterdam Airport Schiphol",
                                "destinationAirportCode" : "AMS",
                                "destinationCountryCode" : "NL",
                                "flight" : "KL 1386",
                                "delayed" : false,
                                "airportCode" : "AMS",
                                "airportName" : "Amsterdam Airport Schiphol",
                                "gate" : "A9",
                                "terminal" : "3",
                                "scheduledTime" : "15:00:00",
                                "scheduledDate" : "2020-08-20",
                                "actualTime" : "14:44:00",
                                "actualDate" : "2020-08-20",
                                "codeSharesAsNames" : [ "Ukraine International Airlines 9386", "Delta Air Lines 9473" ],
                                "codeSharesAsCodes" : [ "PS 9386", "DL 9473" ],
                                "weather" : "Mostly sunny",
                                "temperatureC" : 26.0,
                                "temperatureF" : 78.8
                              }, {
                                "status" : "Arrived",
                                "statusCode" : "AR",
                                "airlineName" : "Aeroflot Russian Airlines",
                                "airlineCode" : "SU",
                                "flightNumber" : "3410",
                                "codeShare" : true,
                                "operatedFlightNumber" : "1394",
                                "operatingAirlineName" : "KLM Royal Dutch Airlines",
                                "operatingAirlineCode" : "KL",
                                "originAirportName" : "Pulkovo Airport",
                                "originAirportCode" : "LED",
                                "originCountryCode" : "RU",
                                "destinationAirportName" : "Amsterdam Airport Schiphol",
                                "destinationAirportCode" : "AMS",
                                "destinationCountryCode" : "NL",
                                "flight" : "SU 3410",
                                "delayed" : false,
                                "airportCode" : "AMS",
                                "airportName" : "Amsterdam Airport Schiphol",
                                "gate" : "A9",
                                "terminal" : "3",
                                "scheduledTime" : "15:00:00",
                                "scheduledDate" : "2020-08-20",
                                "actualTime" : "14:47:00",
                                "actualDate" : "2020-08-20",
                                "weather" : "Mostly sunny",
                                "temperatureC" : 26.0,
                                "temperatureF" : 78.8
                              }, {
                                "status" : "Arrived",
                                "statusCode" : "AR",
                                "airlineName" : "Aeroflot Russian Airlines",
                                "airlineCode" : "SU",
                                "flightNumber" : "3410",
                                "codeShare" : true,
                                "operatedFlightNumber" : "1394",
                                "operatingAirlineName" : "KLM Royal Dutch Airlines",
                                "operatingAirlineCode" : "KL",
                                "originAirportName" : "Pulkovo Airport",
                                "originAirportCode" : "LED",
                                "originCountryCode" : "RU",
                                "destinationAirportName" : "Amsterdam Airport Schiphol",
                                "destinationAirportCode" : "AMS",
                                "destinationCountryCode" : "NL",
                                "flight" : "SU 3410",
                                "delayed" : false,
                                "airportCode" : "AMS",
                                "airportName" : "Amsterdam Airport Schiphol",
                                "gate" : "A9",
                                "terminal" : "3",
                                "scheduledTime" : "15:00:00",
                                "scheduledDate" : "2020-08-20",
                                "actualTime" : "14:47:00",
                                "actualDate" : "2020-08-20",
                                "weather" : "Mostly sunny",
                                "temperatureC" : 26.0,
                                "temperatureF" : 78.8
                              }, {
                                "status" : "Arrived",
                                "statusCode" : "AR",
                                "airlineName" : "Delta Air Lines",
                                "airlineCode" : "DL",
                                "flightNumber" : "9598",
                                "codeShare" : true,
                                "operatedFlightNumber" : "1146",
                                "operatingAirlineName" : "KLM Royal Dutch Airlines",
                                "operatingAirlineCode" : "KL",
                                "originAirportName" : "Oslo Gardermoen Airport",
                                "originAirportCode" : "OSL",
                                "originCountryCode" : "NO",
                                "destinationAirportName" : "Amsterdam Airport Schiphol",
                                "destinationAirportCode" : "AMS",
                                "destinationCountryCode" : "NL",
                                "flight" : "DL 9598",
                                "delayed" : false,
                                "airportCode" : "AMS",
                                "airportName" : "Amsterdam Airport Schiphol",
                                "gate" : "A4",
                                "terminal" : "2",
                                "scheduledTime" : "15:00:00",
                                "scheduledDate" : "2020-08-20",
                                "actualTime" : "15:03:00",
                                "actualDate" : "2020-08-20",
                                "weather" : "Mostly sunny",
                                "temperatureC" : 26.0,
                                "temperatureF" : 78.8
                              }, {
                                "status" : "Arrived",
                                "statusCode" : "AR",
                                "airlineName" : "TAP Portugal",
                                "airlineCode" : "TP",
                                "flightNumber" : "678",
                                "codeShare" : false,
                                "operatedFlightNumber" : "678",
                                "operatingAirlineName" : "TAP Portugal",
                                "operatingAirlineCode" : "TP",
                                "originAirportName" : "Francisco de Sá Carneiro Airport",
                                "originAirportCode" : "OPO",
                                "originCountryCode" : "PT",
                                "destinationAirportName" : "Amsterdam Airport Schiphol",
                                "destinationAirportCode" : "AMS",
                                "destinationCountryCode" : "NL",
                                "flight" : "TP 678",
                                "delayed" : false,
                                "airportCode" : "AMS",
                                "airportName" : "Amsterdam Airport Schiphol",
                                "gate" : "C14",
                                "terminal" : "1",
                                "scheduledTime" : "15:00:00",
                                "scheduledDate" : "2020-08-20",
                                "actualTime" : "14:53:00",
                                "actualDate" : "2020-08-20",
                                "weather" : "Mostly sunny",
                                "temperatureC" : 26.0,
                                "temperatureF" : 78.8
                              }, {
                                "status" : "Arrived",
                                "statusCode" : "AR",
                                "airlineName" : "Aeroflot Russian Airlines",
                                "airlineCode" : "SU",
                                "flightNumber" : "3410",
                                "codeShare" : true,
                                "operatedFlightNumber" : "1394",
                                "operatingAirlineName" : "KLM Royal Dutch Airlines",
                                "operatingAirlineCode" : "KL",
                                "originAirportName" : "Pulkovo Airport",
                                "originAirportCode" : "LED",
                                "originCountryCode" : "RU",
                                "destinationAirportName" : "Amsterdam Airport Schiphol",
                                "destinationAirportCode" : "AMS",
                                "destinationCountryCode" : "NL",
                                "flight" : "SU 3410",
                                "delayed" : false,
                                "airportCode" : "AMS",
                                "airportName" : "Amsterdam Airport Schiphol",
                                "gate" : "A9",
                                "terminal" : "3",
                                "scheduledTime" : "15:00:00",
                                "scheduledDate" : "2020-08-20",
                                "actualTime" : "14:47:00",
                                "actualDate" : "2020-08-20",
                                "weather" : "Mostly sunny",
                                "temperatureC" : 26.0,
                                "temperatureF" : 78.8
                              }, {
                                "status" : "Arrived",
                                "statusCode" : "AR",
                                "airlineName" : "Aeroflot Russian Airlines",
                                "airlineCode" : "SU",
                                "flightNumber" : "3410",
                                "codeShare" : true,
                                "operatedFlightNumber" : "1394",
                                "operatingAirlineName" : "KLM Royal Dutch Airlines",
                                "operatingAirlineCode" : "KL",
                                "originAirportName" : "Pulkovo Airport",
                                "originAirportCode" : "LED",
                                "originCountryCode" : "RU",
                                "destinationAirportName" : "Amsterdam Airport Schiphol",
                                "destinationAirportCode" : "AMS",
                                "destinationCountryCode" : "NL",
                                "flight" : "SU 3410",
                                "delayed" : false,
                                "airportCode" : "AMS",
                                "airportName" : "Amsterdam Airport Schiphol",
                                "gate" : "A9",
                                "terminal" : "3",
                                "scheduledTime" : "15:00:00",
                                "scheduledDate" : "2020-08-20",
                                "actualTime" : "14:47:00",
                                "actualDate" : "2020-08-20",
                                "weather" : "Mostly sunny",
                                "temperatureC" : 26.0,
                                "temperatureF" : 78.8
                              }, {
                                "status" : "Arrived",
                                "statusCode" : "AR",
                                "airlineName" : "KLM Royal Dutch Airlines",
                                "airlineCode" : "KL",
                                "flightNumber" : "1386",
                                "codeShare" : false,
                                "operatedFlightNumber" : "1386",
                                "operatingAirlineName" : "KLM Royal Dutch Airlines",
                                "operatingAirlineCode" : "KL",
                                "originAirportName" : "Boryspil International Airport",
                                "originAirportCode" : "KBP",
                                "originCountryCode" : "UA",
                                "destinationAirportName" : "Amsterdam Airport Schiphol",
                                "destinationAirportCode" : "AMS",
                                "destinationCountryCode" : "NL",
                                "flight" : "KL 1386",
                                "delayed" : false,
                                "airportCode" : "AMS",
                                "airportName" : "Amsterdam Airport Schiphol",
                                "gate" : "A9",
                                "terminal" : "3",
                                "scheduledTime" : "15:00:00",
                                "scheduledDate" : "2020-08-20",
                                "actualTime" : "14:44:00",
                                "actualDate" : "2020-08-20",
                                "codeSharesAsNames" : [ "Ukraine International Airlines 9386", "Delta Air Lines 9473" ],
                                "codeSharesAsCodes" : [ "PS 9386", "DL 9473" ],
                                "weather" : "Mostly sunny",
                                "temperatureC" : 26.0,
                                "temperatureF" : 78.8
                              } ]
                            }
                            
 

Airline Icon List

The SITA Flight Information Display APIs include Airline Icons for each airline Code. The images are available in 2 formats bullet and gate logo based on image sizes.

For example, AA is represented by a bullet logo in 50x50 size and a gate logo in 65x410 size. Below is the table with Airline Code and URL for corresponding icons.

S. NoAirline CodeURL
10Bhttps://uds-static.api.aero/airline_logos/bulletlogo/0B_50x50_bullet.png
24Ohttps://uds-static.api.aero/airline_logos/bulletlogo/4O_50x50_bullet.png
35Jhttps://uds-static.api.aero/airline_logos/bulletlogo/5J_50x50_bullet.png
46Ehttps://uds-static.api.aero/airline_logos/bulletlogo/6E_50x50_bullet.png
59W

https://uds-static.api.aero/airline_logos/bulletlogo/9W_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/9W_65x410_trans.png

6A3

https://uds-static.api.aero/airline_logos/bulletlogo/A3_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/A3_65x410_trans.png

7AA

https://uds-static.api.aero/airline_logos/bulletlogo/AA_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/AA_65x410_trans.png

8AC

https://uds-static.api.aero/airline_logos/bulletlogo/AC_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/AC_65x410_trans.png

9ADhttps://uds-static.api.aero/airline_logos/bulletlogo/AD_50x50_bullet.png
10AF

https://uds-static.api.aero/airline_logos/bulletlogo/AF_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/AF_65x410_trans.png

11AH

https://uds-static.api.aero/airline_logos/bulletlogo/AH_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/AH_65x410_trans.png

12AI

https://uds-static.api.aero/airline_logos/bulletlogo/AI_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/AI_65x410_trans.png

13AM

https://uds-static.api.aero/airline_logos/bulletlogo/AM_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/AM_65x410_trans.png

14ARhttps://uds-static.api.aero/airline_logos/bulletlogo/AR_50x50_bullet.png
15AShttps://uds-static.api.aero/airline_logos/bulletlogo/AS_50x50_bullet.png
16AT

https://uds-static.api.aero/airline_logos/bulletlogo/AT_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/AT_65x240_trans.png

17AV

https://uds-static.api.aero/airline_logos/bulletlogo/AV_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/AV_65x410_trans.png

18AY

https://uds-static.api.aero/airline_logos/bulletlogo/AY_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/AY_65x410_trans.png

19AZ

https://uds-static.api.aero/airline_logos/bulletlogo/AZ_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/AZ_65x410_trans.png

20B2https://uds-static.api.aero/airline_logos/bulletlogo/B2_50x50_bullet.png
21B6https://uds-static.api.aero/airline_logos/bulletlogo/B6_50x50_bullet.png
22BA

https://uds-static.api.aero/airline_logos/bulletlogo/BA_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/BA_65x410_trans.png

23BE

https://uds-static.api.aero/airline_logos/bulletlogo/BE_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/BE_65x410_trans.png

24BG

https://uds-static.api.aero/airline_logos/bulletlogo/BG_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/BG_65x410_trans.png

25BI

https://uds-static.api.aero/airline_logos/bulletlogo/BI_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/BI_65x240_trans.png

26BR

https://uds-static.api.aero/airline_logos/bulletlogo/BR_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/BR_65x410_trans.png

27BThttps://uds-static.api.aero/airline_logos/bulletlogo/BT_50x50_bullet.png
28BWhttps://uds-static.api.aero/airline_logos/bulletlogo/BW_50x50_bullet.png
29CA

https://uds-static.api.aero/airline_logos/bulletlogo/CA_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/CA_65x410_trans.png

30CIhttps://uds-static.api.aero/airline_logos/bulletlogo/CI_50x50_bullet.png
31CMhttps://uds-static.api.aero/airline_logos/bulletlogo/CM_50x50_bullet.png
32CX

https://uds-static.api.aero/airline_logos/bulletlogo/CX_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/CX_65x410_trans.png

33CZ

https://uds-static.api.aero/airline_logos/bulletlogo/CZ_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/CZ_65x410_trans.png

34DL

https://uds-static.api.aero/airline_logos/bulletlogo/DL_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/DL_65x410_trans.png

35DYhttps://uds-static.api.aero/airline_logos/bulletlogo/DY_50x50_bullet.png
36EI

https://uds-static.api.aero/airline_logos/bulletlogo/EI_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/EI_65x410_trans.png

37EK

https://uds-static.api.aero/airline_logos/bulletlogo/EK_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/EK_65x410_trans.png

38ELhttps://uds-static.api.aero/airline_logos/bulletlogo/EL_50x50_bullet.png
39EQhttps://uds-static.api.aero/airline_logos/bulletlogo/EQ_50x50_bullet.png
40ET

https://uds-static.api.aero/airline_logos/bulletlogo/ET_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/ET_65x410_trans.png

41EW

https://uds-static.api.aero/airline_logos/bulletlogo/EW_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/EW_65x410_trans.png

42EY

https://uds-static.api.aero/airline_logos/bulletlogo/EY_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/EY_65x410_trans.png

43F9https://uds-static.api.aero/airline_logos/bulletlogo/F9_50x50_bullet.png
44FB

https://uds-static.api.aero/airline_logos/bulletlogo/FB_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/FB_65x410_trans.png

45FI

https://uds-static.api.aero/airline_logos/bulletlogo/FI_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/FI_65x410_trans.png

46FJ

https://uds-static.api.aero/airline_logos/bulletlogo/FJ_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/FJ_65x410_trans.png

47FLhttps://uds-static.api.aero/airline_logos/bulletlogo/FL_50x50_bullet.png
48FMhttps://uds-static.api.aero/airline_logos/bulletlogo/FM_50x50_bullet.png
49FNhttps://uds-static.api.aero/airline_logos/bulletlogo/FN_50x50_bullet.png
50FRhttps://uds-static.api.aero/airline_logos/bulletlogo/FR_50x50_bullet.png
51FYhttps://uds-static.api.aero/airline_logos/bulletlogo/FY_50x50_bullet.png
52FZhttps://uds-static.api.aero/airline_logos/bulletlogo/FZ_50x50_bullet.png
53G3https://uds-static.api.aero/airline_logos/bulletlogo/G3_50x50_bullet.png
54G4https://uds-static.api.aero/airline_logos/bulletlogo/G4_50x50_bullet.png
55G9https://uds-static.api.aero/airline_logos/bulletlogo/G9_50x50_bullet.png
56GA

https://uds-static.api.aero/airline_logos/bulletlogo/GA_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/GA_65x410_trans.png

57GF

https://uds-static.api.aero/airline_logos/bulletlogo/GF_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/GF_65x410_trans.png

58GS

https://uds-static.api.aero/airline_logos/bulletlogo/GS_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/GS_65x240_trans.png

59HAhttps://uds-static.api.aero/airline_logos/bulletlogo/HA_50x50_bullet.png
60HU

https://uds-static.api.aero/airline_logos/bulletlogo/HU_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/HU_65x410_trans.png

61HY

https://uds-static.api.aero/airline_logos/bulletlogo/HY_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/HY_65x240_trans.png

62IB

https://uds-static.api.aero/airline_logos/bulletlogo/IB_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/IB_65x410_trans.png

63IGhttps://uds-static.api.aero/airline_logos/bulletlogo/IG_50x50_bullet.png
64IR

https://uds-static.api.aero/airline_logos/bulletlogo/IR_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/IR_65x410_trans.png

65IThttps://uds-static.api.aero/airline_logos/bulletlogo/IT_50x50_bullet.png
66J2

https://uds-static.api.aero/airline_logos/bulletlogo/J2_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/J2_65x410_trans.png

67JD

https://uds-static.api.aero/airline_logos/bulletlogo/JD_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/JD_65x410_trans.png

68JJhttps://uds-static.api.aero/airline_logos/bulletlogo/JJ_50x50_bullet.png
69JL

https://uds-static.api.aero/airline_logos/bulletlogo/JL_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/JL_65x410_trans.png

70JPhttps://uds-static.api.aero/airline_logos/bulletlogo/JP_50x50_bullet.png
71JThttps://uds-static.api.aero/airline_logos/bulletlogo/JT_50x50_bullet.png
72JU

https://uds-static.api.aero/airline_logos/bulletlogo/JU_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/JU_65x410_trans.png

73KC

https://uds-static.api.aero/airline_logos/bulletlogo/KC_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/KC_65x410_trans.png

74KE

https://uds-static.api.aero/airline_logos/bulletlogo/KE_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/KE_65x410_trans.png

75KL

https://uds-static.api.aero/airline_logos/bulletlogo/KL_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/KL_65x410_trans.png

76KM

https://uds-static.api.aero/airline_logos/bulletlogo/KM_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/KM_65x410_trans.png

77KQ

https://uds-static.api.aero/airline_logos/bulletlogo/KQ_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/KQ_65x410_trans.png

78KU

https://uds-static.api.aero/airline_logos/bulletlogo/KU_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/KU_65x410_trans.png

79KXhttps://uds-static.api.aero/airline_logos/bulletlogo/KX_50x50_bullet.png
80LA

https://uds-static.api.aero/airline_logos/bulletlogo/LA_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/LA_65x410_trans.png

81LGhttps://uds-static.api.aero/airline_logos/bulletlogo/LG_50x50_bullet.png
82LH

https://uds-static.api.aero/airline_logos/bulletlogo/LH_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/LH_65x410_trans.png

83LIhttps://uds-static.api.aero/airline_logos/bulletlogo/LI_50x50_bullet.png
84LNhttps://uds-static.api.aero/airline_logos/bulletlogo/LN_50x50_bullet.png
85LO

https://uds-static.api.aero/airline_logos/bulletlogo/LO_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/LO_65x410_trans.png

86LQhttps://uds-static.api.aero/airline_logos/bulletlogo/LQ_50x50_bullet.png
87LShttps://uds-static.api.aero/airline_logos/bulletlogo/LS_50x50_bullet.png
88LX

https://uds-static.api.aero/airline_logos/bulletlogo/LX_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/LX_65x240_trans.png

89LY

https://uds-static.api.aero/airline_logos/bulletlogo/LY_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/LY_65x410_trans.png

90ME

https://uds-static.api.aero/airline_logos/bulletlogo/ME_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/ME_65x410_trans.png

91MFhttps://uds-static.api.aero/airline_logos/bulletlogo/MF_50x50_bullet.png
92MH

https://uds-static.api.aero/airline_logos/bulletlogo/MH_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/MH_65x410_trans.png

93MK

https://uds-static.api.aero/airline_logos/bulletlogo/MK_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/MK_65x410_trans.png

94MS

https://uds-static.api.aero/airline_logos/bulletlogo/MS_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/MS_65x410_trans.png

95MU

https://uds-static.api.aero/airline_logos/bulletlogo/MU_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/MU_65x410_trans.png

96NH

https://uds-static.api.aero/airline_logos/bulletlogo/NH_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/NH_65x410_trans.png

97NZ

https://uds-static.api.aero/airline_logos/bulletlogo/NZ_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/NZ_65x410_trans.png

98OBhttps://uds-static.api.aero/airline_logos/bulletlogo/OB_50x50_bullet.png
99OS

https://uds-static.api.aero/airline_logos/bulletlogo/OS_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/OS_65x410_trans.png

100OU

https://uds-static.api.aero/airline_logos/bulletlogo/OU_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/OU_65x410_trans.png

101OZ

https://uds-static.api.aero/airline_logos/bulletlogo/OZ_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/OZ_65x410_trans.png

102PChttps://uds-static.api.aero/airline_logos/bulletlogo/PC_50x50_bullet.png
103PDhttps://uds-static.api.aero/airline_logos/bulletlogo/PD_50x50_bullet.png
104PK

https://uds-static.api.aero/airline_logos/bulletlogo/PK_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/PK_65x410_trans.png

105PR

https://uds-static.api.aero/airline_logos/bulletlogo/PR_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/PR_65x410_trans.png

106PShttps://uds-static.api.aero/airline_logos/bulletlogo/PS_50x50_bullet.png
107PXhttps://uds-static.api.aero/airline_logos/bulletlogo/PX_50x50_bullet.png
108QF

https://uds-static.api.aero/airline_logos/bulletlogo/QF_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/QF_65x410_trans.png

109QR

https://uds-static.api.aero/airline_logos/bulletlogo/QR_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/QR_65x410_trans.png

110QShttps://uds-static.api.aero/airline_logos/bulletlogo/QS_50x50_bullet.png
111RJ

https://uds-static.api.aero/airline_logos/bulletlogo/RJ_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/RJ_65x410_trans.png

112RO

https://uds-static.api.aero/airline_logos/bulletlogo/RO_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/RO_65x410_trans.png

113S7https://uds-static.api.aero/airline_logos/bulletlogo/S7_50x50_bullet.png
114SA

https://uds-static.api.aero/airline_logos/bulletlogo/SA_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/SA_65x410_trans.png

115SBhttps://uds-static.api.aero/airline_logos/bulletlogo/SB_50x50_bullet.png
116SGhttps://uds-static.api.aero/airline_logos/bulletlogo/SG_50x50_bullet.png
117SK

https://uds-static.api.aero/airline_logos/bulletlogo/SK_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/SK_65x410_trans.png

118SN

https://uds-static.api.aero/airline_logos/bulletlogo/SN_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/SN_65x410_trans.png

119SQ

https://uds-static.api.aero/airline_logos/bulletlogo/SQ_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/SQ_65x410_trans.png

120SU

https://uds-static.api.aero/airline_logos/bulletlogo/SU_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/SU_65x410_trans.png

121SV

https://uds-static.api.aero/airline_logos/bulletlogo/SV_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/SV_65x410_trans.png

122SYhttps://uds-static.api.aero/airline_logos/bulletlogo/SY_50x50_bullet.png
123TG

https://uds-static.api.aero/airline_logos/bulletlogo/TG_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/TG_65x410_trans.png

124TK

https://uds-static.api.aero/airline_logos/bulletlogo/TK_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/TK_65x410_trans.png

125TP

https://uds-static.api.aero/airline_logos/bulletlogo/TP_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/TP_65x410_trans.png

126TU

https://uds-static.api.aero/airline_logos/bulletlogo/TU_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/TU_65x410_trans.png

127TXhttps://uds-static.api.aero/airline_logos/bulletlogo/TX_50x50_bullet.png
128U2https://uds-static.api.aero/airline_logos/bulletlogo/U2_50x50_bullet.png
129U6https://uds-static.api.aero/airline_logos/bulletlogo/U6_50x50_bullet.png
130UA

https://uds-static.api.aero/airline_logos/bulletlogo/UA_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/UA_65x410_trans.png

131UL

https://uds-static.api.aero/airline_logos/bulletlogo/UL_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/UL_65x410_trans.png

132UThttps://uds-static.api.aero/airline_logos/bulletlogo/UT_50x50_bullet.png
133UXhttps://uds-static.api.aero/airline_logos/bulletlogo/UX_50x50_bullet.png
134V7https://uds-static.api.aero/airline_logos/bulletlogo/V7_50x50_bullet.png
135VA

https://uds-static.api.aero/airline_logos/bulletlogo/VA_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/VA_65x410_trans.png

136VBhttps://uds-static.api.aero/airline_logos/bulletlogo/VB_50x50_bullet.png
137VHhttps://uds-static.api.aero/airline_logos/bulletlogo/VH_50x50_bullet.png
138VJhttps://uds-static.api.aero/airline_logos/bulletlogo/VJ_50x50_bullet.png
139VN

https://uds-static.api.aero/airline_logos/bulletlogo/VN_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/VN_65x410_trans.png

140VS

https://uds-static.api.aero/airline_logos/bulletlogo/VS_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/VS_65x410_trans.png

141VThttps://uds-static.api.aero/airline_logos/bulletlogo/VT_50x50_bullet.png
142VY

https://uds-static.api.aero/airline_logos/bulletlogo/VY_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/VY_65x410_trans.png

143W3https://uds-static.api.aero/airline_logos/bulletlogo/W3_50x50_bullet.png
144WGhttps://uds-static.api.aero/airline_logos/bulletlogo/WG_50x50_bullet.png
145WNhttps://uds-static.api.aero/airline_logos/bulletlogo/WN_50x50_bullet.png
146WShttps://uds-static.api.aero/airline_logos/bulletlogo/WS_50x50_bullet.png
147WWhttps://uds-static.api.aero/airline_logos/bulletlogo/WW_50x50_bullet.png
148WXhttps://uds-static.api.aero/airline_logos/bulletlogo/WX_50x50_bullet.png
149WY

https://uds-static.api.aero/airline_logos/bulletlogo/WY_50x50_bullet.png

https://uds-static.api.aero/airline_logos/gatelogo/WY_65x410_trans.png

150Y4https://uds-static.api.aero/airline_logos/bulletlogo/Y4_50x50_bullet.png
151Z8https://uds-static.api.aero/airline_logos/bulletlogo/Z8_50x50_bullet.png

 

Contact Us

For subscription and sales queries, please contact:

Product Inquiries

Contact Us

 

For Technical queries, please contact:

Technical Support Team

Contact Us

 

contact-icon

Do you have a question? We are here, ready to help

Get in touch

About us

We are the world's leading specialist in air transport communications and IT solutions. 

 

bottom navigation SITA logo