
Avies
 AVIES
 AIA
 U3
 www.flyavies.ee
 Estonia
 EE
 Lennart Meri Tallinn Airport
 TLL
https://aviation-edge.com/v2/public/timetable?key=[KEY]&iataCode=TLL&type=departure&airline_iata=U3
				
					{
  "airline": {
    "iataCode": "U3",
    "icaoCode": "AIA",
    "name": "Avies"
  },
  "arrival": {
    "actualRunway": null,
    "actualTime": null,
    "baggage": "7",
    "delay": null,
    "estimatedRunway": null,
    "estimatedTime": "2023-06-07T13:55:00.000",
    "gate": 2,
    "iataCode": "LHR",
    "icaoCode": "EGLL",
    "scheduledTime": "2023-06-07T14:15:00.000",
    "terminal": null
  },
  "codeshared": null,
  "departure": {
    "actualRunway": "2023-06-07T10:41:00.000",
    "actualTime": "2023-06-07T10:41:00.000",
    "baggage": null,
    "delay": "21",
    "estimatedRunway": "2023-06-07T10:41:00.000",
    "estimatedTime": "2023-06-07T10:20:00.000",
    "gate": null,
    "iataCode": "TLL",
    "icaoCode": "EETN",
    "scheduledTime": "2023-06-07T10:20:00.000",
    "terminal": "1"
  },
  "flight": {
    "iataNumber": "U32269",
    "icaoNumber": "AIA2269",
    "number": "2269"
  },
  "status": "active",
  "type": "departure"
} 
				
			Get all the data with the API key

Use the API to track an individual flight from Avies, using flight details:
 – Flight IATA code
 – Flight ICAO code
 – Flight number
You can also track it based on the Avies aircraft details:
 – Aircraft ICAO code
 – Aircraft registration number
 – Aircraft ICAO24 code.
https://aviation-edge.com/v2/public/flights?key=[KEY]
 &flightIata=W8245
 &flightIcao=CJT245
 ®Num=C-FCJP
 &aircraftIcao=B752
 &aircraftIcao24=C00642
Track the entire fleet of Avies with one single API call using the airline filters:
 – Airline IATA code
 – Airline ICAO code
You can narrow it down further by including an airport filter or even coordinates and a radius.
https://aviation-edge.com/v2/public/flights?key=[KEY]
 &airlineIata=U3
 &airlineIcao=AIA
To get all Avies departures from a specific airport, like TLL, you can filter on the airport codes:
 – Departure airport IATA code
 – Departure airport ICAO code
In combination with the airline codes:
 – Airline IATA code
 – Airline ICAO code
https://aviation-edge.com/v2/public/flights?key=[KEY]
 &depIata=TLL
 &depIcao=EETN
 &airlineIata=U3
 &airlineIcao=AIA
To get all Avies arrivals at a specific airport, like TLL, you can filter on the airport codes:
 – Arrival airport IATA code
 – Arrival airport ICAO code
In combination with the airline codes:
 – Airline IATA code
 – Airline ICAO code
https://aviation-edge.com/v2/public/flights?key=[KEY]
 &arrIata=TLL
 &arrIcao=EETN
 &airlineIata=U3
 &airlineIcao=AIA
				
					[
 {
 "aircraft": {
 "iataCode": "A21N",
 "icao24": "471FA0",
 "icaoCode": "A21N",
 "regNumber": "HA-LZK"
 },
 "airline": {
 "iataCode": "U3",
 "icaoCode": "AIA"
 },
 "arrival": {
 "iataCode": "LHR",
 "icaoCode": "EGLL"
 },
 "departure": {
 "iataCode": "TLL",
 "icaoCode": "EETN"
 },
 "flight": {
 "iataNumber": "U31475",
 "icaoNumber": "AIA9",
 "number": "1475"
 },
 "geography": {
 "altitude": 9723.12,
 "direction": 227,
 "latitude": 50.8,
 "longitude": 19.85
 },
 "speed": {
 "horizontal": 807.472,
 "isGround": 0,
 "vspeed": 0
 },
 "status": "en-route",
 "system": {
 "squawk": null,
 "updated": 1686148597
 }
 }
]