{
	"info": {
		"_postman_id": "64ca3755-2f21-438e-a40f-2be0a22b67a5",
		"name": "FlightLabs",
		"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
		"_exporter_id": "27838498",
		"_collection_link": "https://www.postman.com/zylateam/flightlabs/collection/ts6dnqx/flightlabs?action=share&source=collection_link&creator=27838498"
	},
	"item": [
		{
			"name": "Real-Time Flights API",
			"request": {
				"method": "GET",
				"header": [],
				"url": {
					"raw": "https://app.goflightlabs.com/flights?access_key=YOUR_ACCESS_KEY&limit=10&airlineIata=AA",
					"protocol": "https",
					"host": [
						"app",
						"goflightlabs",
						"com"
					],
					"path": [
						"flights"
					],
					"query": [
						{
							"key": "access_key",
							"value": "YOUR_ACCESS_KEY"
						},
						{
							"key": "limit",
							"value": "10"
						},
						{
							"key": "airlineIata",
							"value": "AA"
						},
						{
							"key": "flightIcao",
							"value": "AAL719",
							"description": "[Optional] Flight ICAO code",
							"disabled": true
						},
						{
							"key": "flightNum",
							"value": "719",
							"description": "[Optional] Flight Number",
							"disabled": true
						},
						{
							"key": "airlineIcao",
							"value": "AAL",
							"description": "[Optional] Airline ICAO code",
							"disabled": true
						},
						{
							"key": "depIata",
							"value": "FCO",
							"description": "[Optional] Departure airport IATA code",
							"disabled": true
						},
						{
							"key": "depIcao\t",
							"value": "LIRF",
							"description": "[Optional] Departure airport ICAO code",
							"disabled": true
						},
						{
							"key": "arrIata",
							"value": "PHL",
							"description": "[Optional] Arrival airport IATA code",
							"disabled": true
						},
						{
							"key": "arrIcao",
							"value": "KPHL",
							"description": "[Optional] Arrival airport ICAO code",
							"disabled": true
						},
						{
							"key": "regNum",
							"value": "N801AC",
							"description": "[Optional] Aircraft registration number",
							"disabled": true
						},
						{
							"key": "hex",
							"value": "AAE597",
							"description": "[Optional] Aircraft ICAO24 code",
							"disabled": true
						}
					]
				},
				"description": "This endpoint provides real-time information about flights worldwide. You can use it to check the status of one or multiple flights.\n\n**The data is updated every 10 minutes.**\n\n#### API Response Objects:\n\n| Response Object | Description |\n| --- | --- |\n| `hex` | ICAO24 Hex address. |\n| `reg_number` | Aircraft Registration Number. |\n| `flag` | ISO 2 country code from Countries DB.. |\n| `lat` | Aircraft Geo-Latitude.. |\n| `lng` | Aircraft Geo-Longitude.. |\n| `alt` | Aircraft elevation (meters).. |\n| `dir` | Aircraft head direction.. |\n| `speed` | Aircraft horizontal speed (km).. |\n| `v_speed` | Aircraft vertical speed (km).. |\n| `squawk` | Aircraft squawk signal code. |\n| `airline_icao` | Airline ICAO code. |\n| `airline_iata` | Airline IATA code. |\n| `aircraft_icao` | Aircraft ICAO type. |\n| `flight_icao` | Flight ICAO code-number. |\n| `flight_iata` | Flight IATA code-number. |\n| `flight_number` | Flight number only. |\n| `dep_icao` | Departure Airport ICAO code. |\n| `dep_iata` | Departure Airport IATA code. |\n| `arr_icao` | Arrival Airport ICAO code. |\n| `arr_iata` | Arrival Airport IATA code. |\n| `updated` | UNIX timestamp of last aircraft signal. |\n| `status` | Current flight status - scheduled, en-route, landed. |\n| `type` | Type of aircraft signal - ADS-B, Mode-S, etc. |"
			},
			"response": []
		},
		{
			"name": "Flights With CallSign API",
			"request": {
				"method": "GET",
				"header": [],
				"url": {
					"raw": "https://app.goflightlabs.com/flights-with-call-sign?access_key=YOUR_ACCESS_KEY",
					"protocol": "https",
					"host": [
						"app",
						"goflightlabs",
						"com"
					],
					"path": [
						"flights-with-call-sign"
					],
					"query": [
						{
							"key": "access_key",
							"value": "YOUR_ACCESS_KEY"
						},
						{
							"key": "callsign",
							"value": "IE204",
							"description": "[Optional] Unique identifier assigned to an aircraft during its flight.",
							"disabled": true
						},
						{
							"key": "airline_icao",
							"value": "CPA",
							"description": "[Optional] Airline ICAO code.",
							"disabled": true
						}
					]
				},
				"description": "Receive all the flights in the course right now. Receive IATA codes, current position, speed, heading, departure and arrival airports, and callsign.\n\n#### API Response Objects:\n\n| Response Object | Description |\n| --- | --- |\n| id | Return the ID of the flight in the JSON response. This ID is unique for every flight in the response. |\n| icao_24bit | Return the unique 24-bit identifier of the aircraft concerned. |\n| latitude | Return the latitude position of the aircraft. |\n| longitude | Return the longitude position of the aircraft. |\n| heading | Return the direction on which the aircraft is heading. |\n| altitude | Return the distance to the ground in Meters. |\n| ground_speed | Return the ground speed expressed in knots. |\n| squawk | Return the squawk codes used by air traffic control (ATC) to identify aircraft. |\n| aircraft_code | An aircraft registration code unique to a single aircraft. |\n| registration | An aircraft registration code unique to a single aircraft. |\n| time | Return the UNIX timestamp for when the information is given. |\n| origin_airport_iata | Return the IATA code of the departure airport. |\n| destination_airport_iata | Return the IATA code of the arrival airport. |\n| number | Return the flight number. |\n| airline_iata | Return the IATA code of the airline. |\n| on_ground | Result \"0\" if the plane is flying. Result \"1\" if the plane is on the ground. |\n| vertical_speed | Return the vertical speed expressed in knots. |\n| callsign | A callsign is like an airplane's name during a particular flight. |\n| airline_icao | Return the ICAO code of the airline. |"
			},
			"response": []
		},
		{
			"name": "Flights By Airline API",
			"request": {
				"method": "GET",
				"header": [],
				"url": {
					"raw": "https://app.goflightlabs.com/flights-by-airline?access_key=YOUR_ACCESS_KEY&airline_icao=AZU",
					"protocol": "https",
					"host": [
						"app",
						"goflightlabs",
						"com"
					],
					"path": [
						"flights-by-airline"
					],
					"query": [
						{
							"key": "access_key",
							"value": "YOUR_ACCESS_KEY"
						},
						{
							"key": "airline_icao",
							"value": "AZU"
						}
					]
				},
				"description": "Get all the active flights based on the ICAO code of any airline.\n\n#### API Response Objects:\n\n| Response Object | Description |\n| --- | --- |\n| `id` | Return the ID of the flight in the JSON response. This ID is unique for every flight in the response. |\n| `icao_24bit` | Return the unique 24-bit identifier of the aircraft concerned. |\n| `latitude` | Return the latitude position of the aircraft. |\n| `longitude` | Return the longitude position of the aircraft. |\n| `heading` | Return the direction on which the aircraft is heading. |\n| `altitude` | Return the distance to the ground in Meters. |\n| `ground_speed` | Return the ground speed expressed in knots. |\n| `squawk` | Return the squawk codes used by air traffic control (ATC) to identify aircraft. |\n| `aircraft_code` | An aircraft registration code unique to a single aircraft. |\n| `registration` | An aircraft registration code unique to a single aircraft. |\n| `time` | Return the UNIX timestamp for when the information is given. |\n| `origin_airport_iata` | Return the IATA code of the departure airport. |\n| `destination_airport_iata` | Return the IATA code of the arrival airport. |\n| `number` | Return the flight number. |\n| `airline_iata` | Return the IATA code of the airline. |\n| `on_ground` | Result \"0\" if the plane is flying. Result \"1\" if the plane is on the ground. |\n| `vertical_speed` | Return the vertical speed expressed in knots. |\n| `callsign` | A callsign is like an airplane's name during a particular flight. |\n| `airline_icao` | Return the ICAO code of the airline. |"
			},
			"response": []
		},
		{
			"name": "Flight Info By Flight Number API",
			"request": {
				"method": "GET",
				"header": [],
				"url": {
					"raw": "https://app.goflightlabs.com/flight?access_key=YOUR_ACCESS_KEY&flight_number=3o375",
					"protocol": "https",
					"host": [
						"app",
						"goflightlabs",
						"com"
					],
					"path": [
						"flight"
					],
					"query": [
						{
							"key": "access_key",
							"value": "YOUR_ACCESS_KEY"
						},
						{
							"key": "flight_number",
							"value": "3o375"
						},
						{
							"key": "date",
							"value": "2025-09-15",
							"description": "[Optional] Date of the flight in \"YYYY-MM-DD\" format. For Example 2025-01-15",
							"disabled": true
						}
					]
				},
				"description": "This endpoint is capable of bringing real-time information about a specific flight in the world and retrieving flight status information in real time.\n\n#### API Response Objects:\n\n| Response Object | Description |\n| --- | --- |\n| `DATE` | Date of the flight, formatted as \"DD Mon YYYY\" (e.g., \"20 Mar 2024\"). |\n| `FROM` | Departure location, including IATA code (e.g., \"Nador (NDR)\"). |\n| `TO` | Arrival location, including IATA code (e.g., \"Barcelona (BCN)\"). |\n| `AIRCRAFT` | Aircraft type or model (e.g., \"320\"). |\n| `FLIGHT TIME` | Duration of the flight. Displayed as \"—\" if not available. |\n| `STD (Scheduled Departure Time)` | Scheduled departure time in \"HH:mm\" format (e.g., \"15:45\"). |\n| `ATD (Actual Departure Time)` | Actual departure time. Displayed as \"—\" if not available. |\n| `STA (Scheduled Arrival Time)` | Scheduled arrival time in \"HH:mm\" format (e.g., \"18:25\"). |\n| `STATUS` | Flight status (e.g., \"Scheduled\"). |"
			},
			"response": []
		},
		{
			"name": "Flight Delay API",
			"request": {
				"method": "GET",
				"header": [],
				"url": {
					"raw": "https://app.goflightlabs.com/flight_delays?access_key=YOUR_ACCESS_KEY&delay=60&type=departures",
					"protocol": "https",
					"host": [
						"app",
						"goflightlabs",
						"com"
					],
					"path": [
						"flight_delays"
					],
					"query": [
						{
							"key": "access_key",
							"value": "YOUR_ACCESS_KEY"
						},
						{
							"key": "delay",
							"value": "60"
						},
						{
							"key": "type",
							"value": "departures"
						},
						{
							"key": "arr_iata",
							"value": "URC",
							"description": "[Optional] Arrival airport IATA code",
							"disabled": true
						},
						{
							"key": "arr_icao",
							"value": "ZWWW",
							"description": "[Optional] Arrival airport ICAO code",
							"disabled": true
						},
						{
							"key": "dep_iata",
							"value": "CSX",
							"description": "[Optional] Departure airport IATA code",
							"disabled": true
						},
						{
							"key": "dep_icao",
							"value": "ZGHA",
							"description": "[Optional] Departure airport ICAO code",
							"disabled": true
						},
						{
							"key": "airline_iata",
							"value": "CZ",
							"description": "[Optional] Airline IATA code",
							"disabled": true
						},
						{
							"key": "airline_icao",
							"value": "CSN",
							"description": "[Optional] Airline ICAO code",
							"disabled": true
						},
						{
							"key": "flight_icao",
							"value": "CSN6890",
							"description": "[Optional] Flight ICAO code",
							"disabled": true
						},
						{
							"key": "flight_iata",
							"value": "CZ6890",
							"description": "[Optional] Flight IATA code",
							"disabled": true
						},
						{
							"key": "flight_number",
							"value": "6890",
							"description": "[Optional] Flight number",
							"disabled": true
						}
					]
				},
				"description": "This endpoint will allow you to retrieve the delay from a flight.  \nAlso, this endpoint will provide you with the **SCHEDULED** boarding, departure, landing and arrival times. And, as well, you will be receiving the ACTUAL boarding, departure, landing and arrival times.\n\n#### API Response Objects:\n\n| Response Object | Description |\n| --- | --- |\n| `airline_iata` | Airline IATA code. |\n| `airline_icao` | Airline ICAO code. |\n| `flight_iata` | Flight IATA code-number. |\n| `flight_icao` | Flight ICAO code-number. |\n| `flight_number` | Flight number only. |\n| `dep_iata` | Departure airport IATA code. |\n| `dep_icao` | Departure airport ICAO code. |\n| `arr_iata` | Arrival airport IATA code. |\n| `arr_icao` | Arrival airport ICAO code. |\n| `duration` | Estimated flight time (in minutes). |\n| `delayed` | Estimated flight delay time (in minutes). |\n| `status` | Flight status - scheduled, cancelled, active, landed. |\n| `dep_terminal` | Departure terminal. |\n| `dep_gate` | Departure gate. |\n| `dep_time` | Departure time in local timezone. |\n| `dep_time_utc` | Departure time in UTC. |\n| `dep_estimated` | Estimated departure time in local timezone. |\n| `dep_estimated_utc` | Estimated departure time in UTC. |\n| `dep_actual` | Actual departure time in local timezone. |\n| `dep_actual_utc` | Actual departure time in UTC. |\n| `arr_terminal` | Arrival terminal. |\n| `arr_gate` | Arrival gate. |\n| `arr_baggage` | Baggage claim area. |\n| `arr_time` | Arrival time in local timezone. |\n| `arr_time_utc` | Arrival time in UTC. |\n| `arr_estimated` | Estimated arrival time in local timezone |\n| `arr_estimated_utc` | Estimated arrival time in UTC. |\n| `cs_airline_iata` | IATA code of the associated airline. |\n| `cs_flight_number` | Associated flight number. |\n| `cs_flight_iata` | IATA code of the associated flight. |\n| `dep_delayed` | Delay time in departure.. |\n| `arr_delayed` | Delay time in arrival. |\n| `aircraft_icao` | Aircraft type in ICAO format. |\n| `arr_time_ts` | Timestamp of arrival |\n| `dep_time_ts` | Timestamp of departure. |\n| `arr_estimated_ts` | Timestamp of estimated arrival. |\n| `dep_estimated_ts` | Timestamp of estimated departure. |\n| `dep_actual_ts` | Timestamp of actual departure. |"
			},
			"response": []
		},
		{
			"name": "Flight Schedules API",
			"request": {
				"method": "GET",
				"header": [],
				"url": {
					"raw": "https://app.goflightlabs.com/advanced-flights-schedules?access_key=YOUR_ACCESS_KEY&iataCode=AGS",
					"protocol": "https",
					"host": [
						"app",
						"goflightlabs",
						"com"
					],
					"path": [
						"advanced-flights-schedules"
					],
					"query": [
						{
							"key": "access_key",
							"value": "YOUR_ACCESS_KEY"
						},
						{
							"key": "iataCode",
							"value": "AGS"
						},
						{
							"key": "type",
							"value": "departure",
							"disabled": true
						},
						{
							"key": "airline_iata",
							"value": "BW",
							"description": "[Optional] Airline IATA code-number filter.",
							"disabled": true
						},
						{
							"key": "airline_icao",
							"value": "BWA",
							"description": "[Optional] Airline ICAO code-number filter.",
							"disabled": true
						},
						{
							"key": "flight_iata",
							"value": "AA5955",
							"description": "[Optional] Flight IATA code-number filter.",
							"disabled": true
						},
						{
							"key": "flight_icao",
							"value": "BWA521",
							"description": "[Optional] Flight ICAO code-number filter.",
							"disabled": true
						},
						{
							"key": "arr_actual",
							"value": "2024-11-26 13:44",
							"description": "[Optional] The actual arrival time in the local airport time zone.",
							"disabled": true
						},
						{
							"key": "arr_actual_utc",
							"value": "2024-11-26 18:44",
							"description": "[Optional] The actual arrival time in the UTC time zone.",
							"disabled": true
						},
						{
							"key": "arr_actual_ts",
							"value": "1732646640",
							"description": "[Optional] UNIX timestamp of the actual arrival time.",
							"disabled": true
						},
						{
							"key": "limit",
							"value": null,
							"description": "[Optional] Limit the number of flights returned.\n",
							"disabled": true
						},
						{
							"key": "skip",
							"value": null,
							"description": "[Optional] Number of records to skip before starting to return results.\nDefaults to 0 if not set. Use together with limit to paginate through the data.\nFor example, if you use limit=10 and skip=0, it will return results 1 to 10.\nIf you use skip=1, it will return results 11 to 20. You can keep increasing skip until has_more is false.",
							"disabled": true
						}
					]
				},
				"description": "The API is capable of tracking flights and retrieving flight status information in real-time. In order to look up real-time information about one or multiple flights, you can use the API's flights endpoint together with optional parameters to filter your result set.\n\n#### API Response Objects:\n\n| Response Object | Description |\n| --- | --- |\n| `airline_iata` | Airline IATA code. |\n| `airline_icao` | Airline ICAO code. |\n| `flight_iata` | Flight IATA code-number. |\n| `flight_icao` | Flight ICAO code-number. |\n| `flight_number` | Flight number only. |\n| `dep_iata` | Departure airport IATA code. |\n| `dep_icao` | Departure airport ICAO code. |\n| `dep_terminal` | Estimated departure terminal. |\n| `dep_gate` | Estimated departure gate |\n| `dep_time` | Departure time in the airport time zone. |\n| `dep_time_utc` | Departure time in UTC time zone |\n| `dep_estimated` | Updated departure time in the airport time zone. |\n| `dep_estimated_utc` | Updated departure time in UTC time zone. |\n| `dep_actual` | Actual departure time in the airport time zone. |\n| `dep_actual_utc` | Actual departure time in UTC time zone. |\n| `arr_iata` | Arrival airport IATA code. |\n| `arr_icao` | Arrival airport ICAO code. |\n| `arr_terminal` | Estimated arrival terminal. |\n| `arr_gate` | Estimated arrival gate. |\n| `arr_baggage` | Arrival baggage claim carousel number. |\n| `arr_time` | Arrival time in the airport time zone. |\n| `arr_time_utc` | Arrival time in UTC time zone. |\n| `arr_estimated` | Updated arrival time in the airport time zone. |\n| `arr_estimated_utc` | Updated arrival time in UTC time zone. |\n| `cs_airline_iata` | Codeshared airline IATA code. |\n| `cs_flight_number` | Codeshared flight number. |\n| `cs_flight_iata` | Codeshared flight IATA code-number. |\n| `status` | Flight status - scheduled, cancelled, active, landed. |\n| `duration` | Estimated flight time (in minutes). |\n| `delayed` | (Deprecated) Estimated flight delay time (in minutes). |\n| `dep_delayed` | Estimated time of flight departure delay (in minutes). |\n| `arr_delayed` | Estimated time of flight arrival delay (in minutes). |\n| `aircraft_icao` | Aircraft ICAO code. |\n| `arr_time_ts` | Arrival UNIX timestamp. |\n| `dep_time_ts` | Departure UNIX timestamp. |\n| `arr_estimated_ts` | Updated arrival UNIX timestamp. |\n| `dep_estimated_ts` | Updated departure UNIX timestamp. |\n| `dep_actual_ts` | Actual departure UNIX timestamp. |"
			},
			"response": []
		},
		{
			"name": "Historical Flights API",
			"request": {
				"method": "GET",
				"header": [],
				"url": {
					"raw": "https://app.goflightlabs.com/historical?access_key=YOUR_ACCESS_KEY&code=LGA&date_to=2023-10-04T20:00&date_from=2023-10-04T08:00&type=departure",
					"protocol": "https",
					"host": [
						"app",
						"goflightlabs",
						"com"
					],
					"path": [
						"historical"
					],
					"query": [
						{
							"key": "access_key",
							"value": "YOUR_ACCESS_KEY"
						},
						{
							"key": "code",
							"value": "LGA"
						},
						{
							"key": "date_to",
							"value": "2023-10-04T20:00"
						},
						{
							"key": "date_from",
							"value": "2023-10-04T08:00"
						},
						{
							"key": "type",
							"value": "departure"
						},
						{
							"key": "date",
							"value": "2023-10-04",
							"description": "[Optional] Filter by a specific date (local time, format: YYYY-MM-DD). This field will override both the 'date_from' and 'date_to' fields, returning data for the entire 24-hour range of the specified date.",
							"disabled": true
						},
						{
							"key": "dep_iataCode",
							"value": null,
							"description": "[Optional] Departure airport IATA code",
							"disabled": true
						},
						{
							"key": "arr_iataCode",
							"value": null,
							"description": "[Optional] Arrival airport IATA code",
							"disabled": true
						},
						{
							"key": "airline_iata",
							"value": null,
							"description": "[Optional] Airline airport IATA code",
							"disabled": true
						},
						{
							"key": "flight_num",
							"value": null,
							"description": "[Optional] Departure airport IATA code",
							"disabled": true
						}
					]
				}
			},
			"response": []
		},
		{
			"name": "Future Flights Prediction API",
			"request": {
				"method": "GET",
				"header": [],
				"url": {
					"raw": "https://app.goflightlabs.com/advanced-future-flights?access_key=YOUR_ACCESS_KEY&type=departure&iataCode=BER&date=2024-04-02",
					"protocol": "https",
					"host": [
						"app",
						"goflightlabs",
						"com"
					],
					"path": [
						"advanced-future-flights"
					],
					"query": [
						{
							"key": "access_key",
							"value": "YOUR_ACCESS_KEY"
						},
						{
							"key": "type",
							"value": "departure"
						},
						{
							"key": "iataCode",
							"value": "BER"
						},
						{
							"key": "date",
							"value": "2024-04-02"
						}
					]
				},
				"description": "The future flights endpoint requires you to input a date that is ahead of the present day.\n\n**NOTE:** The Future Flights Endpoint predicts schedules for future dates using an algorithm based on historical data. Note that recent changes within the last year may not be fully reflected. Consider using the Flight Prices Endpoint for more accurate and specific flight details, especially for recent changes or unique flights.\n\nStartFragment\n\n#### API Response Objects:\n\n| Response Object | Description |\n| --- | --- |\n| `sortTime` | The flight's sorting time in ISO 8601 format. |\n| `departureTime` > `timeAMPM` | The departure time in 12-hour AM/PM format. |\n| `departureTime` > `time24` | The departure time in 24-hour format. |\n| `arrivalTime` \\> `timeAMPM` | The arrival time in 12-hour AM/PM format. |\n| `arrivalTime` \\> `time24` | The arrival time in 24-hour format. |\n| `carrier` > `fs` | The flight status code of the carrier. |\n| `carrier` > `name` | The name of the carrier. |\n| `carrier` > `flightNumber` | The flight number of the carrier. |\n| `operatedBy` | Information about the operator of the flight. |\n| `airport` \\> `fs` | The flight status code of the airport. |\n| `airport` \\> `city` | The city where the airport is located. |\n\nEndFragment"
			},
			"response": []
		},
		{
			"name": "Flight Prices API",
			"request": {
				"method": "GET",
				"header": [],
				"url": {
					"raw": "https://app.goflightlabs.com/retrieveFlights?access_key=YOUR_ACCESS_KEY&originSkyId=LOND&destinationSkyId=NYCA&originEntityId=27544008&destinationEntityId=27537542&date=2024-03-26",
					"protocol": "https",
					"host": [
						"app",
						"goflightlabs",
						"com"
					],
					"path": [
						"retrieveFlights"
					],
					"query": [
						{
							"key": "access_key",
							"value": "YOUR_ACCESS_KEY",
							"description": "Your API access key, which can be found in your account dashboard."
						},
						{
							"key": "originSkyId",
							"value": "LOND"
						},
						{
							"key": "destinationSkyId",
							"value": "NYCA"
						},
						{
							"key": "originEntityId",
							"value": "27544008"
						},
						{
							"key": "destinationEntityId",
							"value": "27537542"
						},
						{
							"key": "date",
							"value": "2024-03-26"
						},
						{
							"key": "childrens",
							"value": "2",
							"description": "[Optional] Number of children (aged 2-12 years).",
							"disabled": true
						},
						{
							"key": "adults",
							"value": "4",
							"description": "[Optional] Number of adults (aged 18 and over) Default value: 1.",
							"disabled": true
						},
						{
							"key": "cabinClass",
							"value": "first",
							"description": "[Optional] Possible values: economy, premium_economy, business, first.",
							"disabled": true
						},
						{
							"key": "sortBy",
							"value": "best",
							"description": "[Optional] Possible values: best, price_high, fastest, outbound_take_off_time, outbound_landing_time, return_take_off_time, return_landing_time.\n",
							"disabled": true
						},
						{
							"key": "returnDate",
							"value": "2025-09-08",
							"description": "[Optional] Date of return. Format: YYYY-MM-DD.",
							"disabled": true
						},
						{
							"key": "infants",
							"value": "1",
							"description": "[Optional] Number of infants (under 2 years old)",
							"disabled": true
						},
						{
							"key": "currency",
							"value": "USD",
							"description": "[Optional] Desired currency. For example USD. Can be obtained from the endpoint retrieveCountries.\n",
							"disabled": true
						},
						{
							"key": "countryCode",
							"value": "US",
							"description": "[Optional] For example US. Can be obtained from the endpoint retrieveCountries.\n",
							"disabled": true
						}
					]
				},
				"description": "The following Endpoint will provide you with the price of a flight based on the input parameters entered. In addition to the price, it will provide you with detailed information about the origin, destination, duration, information about carrier, among others.\n\n**NOTE: Some of the input parameters need to be obtained beforehand from the Retrieve Airports API and/or Retrieve Countries API.**\n\n**If you receive incomplete results, please wait and try your request again for the full information. Sometimes heavy queries may take longer to process.****Please note that incomplete API calls will still be counted towards your API usage.**\n\n#### API Response Objects:\n\n| Response Object | Description |\n| --- | --- |\n| `itineraries` | An array of itineraries containing flight information. |\n| `id` | Unique identifier for the itinerary. |\n| `price` | Object containing price details for the itinerary. |\n| `price.raw` | The raw price of the itinerary. |\n| `price.formatted` | The formatted price of the itinerary. |\n| `price.pricingOptionId` | The pricing option ID for the itinerary. |\n| `legs` | An array of legs (flight segments) for the itinerary. |\n| `legs.id` | Unique identifier for the leg. |\n| `legs.origin` | Object containing details about the origin airport. |\n| `legs.origin.id` | The IATA code of the origin airport. |\n| `legs.origin.name` | The name of the origin airport |\n| `legs.origin.displayCode` | The display code of the origin airport. |\n| `legs.origin.city` | The city where the origin airport is located. |\n| `legs.origin.country` | The country where the origin airport is located. |\n| `legs.origin.isHighlighted` | Indicates if the origin airport is highlighted. |\n| `legs.destination` | Object containing details about the destination airport. |\n| `legs.destination.id` | The IATA code of the destination airport |\n| `legs.destination.name` | The name of the destination airport. |\n| `legs.destination.displayCode` | The display code of the destination airport. |\n| `legs.destination.city` | The city where the destination airport is located. |\n| `legs.destination.country` | The country where the destination airport is located. |\n| `legs.destination.isHighlighted` | Indicates if the destination airport is highlighted |\n| `legs.durationInMinutes` | The duration of the flight segment in minutes. |\n| `legs.stopCount` | The number of stops in the flight segment. |\n| `legs.isSmallestStops` | Indicates if the flight segment has the smallest number of stops. |\n| `legs.departure` | The departure datetime of the flight segment. |\n| `legs.arrival` | The arrival datetime of the flight segment. |\n| `legs.timeDeltaInDays` | The time delta in days for the flight segment. |\n| `legs.carriers` | Object containing details about the carrier of the flight segment. |\n| `legs.carriers.marketing` | Array of marketing carriers for the flight segment. |\n| `legs.carriers.marketing.id` | The ID of the marketing carrier. |\n| `legs.carriers.marketing.logoUrl` | The URL of the logo of the marketing carrier. |\n| `legs.carriers.marketing.logoUrl` | The URL of the logo of the marketing carrier. |\n| `legs.carriers.marketing.name` | The name of the marketing carrier. |\n| `legs.carriers.marketing.operationType` | The operation type of the carrier. |\n| `legs.segments` | An array of segments within the leg. |\n| `legs.segments.id` | Unique identifier for the segment. |\n| `legs.segments.origin` | Object containing details about the origin of the segment. |\n| `legs.segments.origin.flightPlaceId` | The flight place ID of the origin airport. |\n| `legs.segments.origin.displayCode` | The display code of the origin airport. |\n| `legs.segments.origin.parent` | Object containing details about the parent location of the origin airport. |\n| `legs.segments.origin.name` | The name of the origin airport. |\n| `legs.segments.origin.type` | The type of location for the origin airport (e.g., Airport, City). |\n| `legs.segments.origin.country` | The country where the origin airport is located. |\n| `legs.segments.destination` | Object containing details about the destination of the segment. |\n| `legs.segments.destination.flightPlaceId` | The flight place ID of the destination airport. |\n| `legs.segments.destination.displayCode` | The display code of the destination airport. |\n| `legs.segments.destination.parent` | Object containing details about the parent location of the destination airport. |\n| `legs.segments.destination.name` | The name of the destination airport. |\n| `legs.segments.destination.type` | The type of location for the destination airport (e.g., Airport, City). |\n| `legs.segments.destination.country` | The country where the destination airport is located. |\n| `legs.segments.departure` | The departure datetime of the segment. |\n| `legs.segments.arrival` | The arrival datetime of the segment. |\n| `legs.segments.durationInMinutes` | The duration of the segment in minutes. |\n| `legs.segments.flightNumber` | The flight number of the segment. |\n| `legs.segments.marketingCarrier` | Object containing details about the marketing carrier of the segment. |\n| `legs.segments.marketingCarrier.id` | The ID of the marketing carrier. |\n| `legs.segments.marketingCarrier.name` | The name of the marketing carrier. |\n| `legs.segments.marketingCarrier.alternateId` | The alternate ID of the marketing carrier. |\n| `legs.segments.marketingCarrier.allianceId` | The alliance ID of the marketing carrier. |\n| `legs.segments.marketingCarrier.displayCode` | The display code of the marketing carrier. |\n| `legs.segments.operatingCarrier` | Object containing details about the operating carrier of the segment. |\n| `legs.segments.operatingCarrier.id` | The ID of the operating carrier. |\n| `legs.segments.operatingCarrier.name` | The name of the operating carrier. |\n| `legs.segments.operatingCarrier.alternateId` | The alternate ID of the operating carrier. |\n| `legs.segments.operatingCarrier.allianceId` | The alliance ID of the operating carrier. |\n| `legs.segments.operatingCarrier.displayCode` | The display code of the operating carrier. |\n| `isSelfTransfer` | Indicates if the itinerary is a self-transfer. |\n| `isProtectedSelfTransfer` | Indicates if the itinerary is a protected self-transfer. |\n| `farePolicy` | Object containing details about the fare policy for the itinerary. |\n| `farePolicy.isChangeAllowed` | Indicates if changes are allowed for the fare. |\n| `farePolicy.isPartiallyChangeable` | Indicates if partial changes are allowed for the fare. |\n| `farePolicy.isCancellationAllowed` | Indicates if cancellations are allowed for the fare. |\n| `farePolicy.isPartiallyRefundable` | Indicates if partial refunds are allowed for the fare. |\n| `eco` | Object containing eco-related details for the itinerary.. |\n| `eco.ecoContenderDelta` | The eco-contender delta value. |\n| `fareAttributes` | Array of fare attributes for the itinerary. |\n| `isMashUp` | Indicates if the itinerary is a mash-up. |\n| `hasFlexibleOptions` | Indicates if the itinerary has flexible options. |\n| `score` | The score of the itinerary. |"
			},
			"response": []
		},
		{
			"name": "Airports by Filter API",
			"request": {
				"method": "GET",
				"header": [],
				"url": {
					"raw": "https://app.goflightlabs.com/airports-by-filter?access_key=YOUR_ACCESS_KEY&iata_code=JFK",
					"protocol": "https",
					"host": [
						"app",
						"goflightlabs",
						"com"
					],
					"path": [
						"airports-by-filter"
					],
					"query": [
						{
							"key": "access_key",
							"value": "YOUR_ACCESS_KEY"
						},
						{
							"key": "iata_code",
							"value": "JFK"
						}
					]
				},
				"description": "This endpoint lets you filter and get detailed info about airports. You'll find data like airport name, IATA code, ICAO code, geographic coordinates, altitude, city, timezone, country code, contact details, website, and social media links. It also includes alternative names, runway count, yearly departures, connections, and indicators for major and international status.\n\n#### API Response Objects:\n\n| Response Object | Description |\n| --- | --- |\n| `name` | Public name. |\n| `iata_code` | IATA code. |\n| `icao_code` | ICAO code. |\n| `lat` | Geo Latitude. |\n| `lng` | Geo Longitude. |\n| `alt` | Airport Runway Elevation (feet). |\n| `city` | Airport metropolitan city name. |\n| `city_code` | Airport metropolitan 3-letter city code |\n| `un_locode` | United Nations location code. |\n| `timezone` | Airport location timezone. |\n| `country_code` | ISO 2 country code. |\n| `names` | Alternative names in different languages. |\n| `runways` | Total airport runways. |\n| `departures` | Total departures from the airport per year. |\n| `connections` | Total connections with other airports. |\n| `is_major` | The major airport in the metropolitan area. |\n| `is_international` | The airport provides international flights. |\n| `website` | Airport official website. |\n| `facebook` | Airport official Facebook page. |\n| `twitter` | Airport official Twitter account. |\n| `instagram` | Airport official Instagram profile. |\n| `linkedin` | Airport official Linkedin profile. |"
			},
			"response": []
		},
		{
			"name": "Retrieve Countries API",
			"request": {
				"method": "GET",
				"header": [],
				"url": {
					"raw": "https://app.goflightlabs.com/retrieveCountries?access_key=YOUR_ACCESS_KEY",
					"protocol": "https",
					"host": [
						"app",
						"goflightlabs",
						"com"
					],
					"path": [
						"retrieveCountries"
					],
					"query": [
						{
							"key": "access_key",
							"value": "YOUR_ACCESS_KEY"
						}
					]
				},
				"description": "This API endpoint offers a list of countries along with essential details such as country code, market, currency title, currency code, and currency symbol. The information provided by this endpoint will be useful as an input parameter for the Flight Prices API."
			},
			"response": []
		},
		{
			"name": "Airlines Routes API",
			"request": {
				"method": "GET",
				"header": [],
				"url": {
					"raw": "https://app.goflightlabs.com/routes?access_key=YOUR_ACCESS_KEY&dep_iata=LAX&dep_icao=KLAX&arr_iata=ABQ&arr_icao=KABQ&airline_icao=AAL&airline_iata=AA",
					"protocol": "https",
					"host": [
						"app",
						"goflightlabs",
						"com"
					],
					"path": [
						"routes"
					],
					"query": [
						{
							"key": "access_key",
							"value": "YOUR_ACCESS_KEY",
							"description": "[Required] Your API access key, which can be found in your account dashboard."
						},
						{
							"key": "dep_iata",
							"value": "LAX",
							"description": "[Required} Departure airport IATA code filter."
						},
						{
							"key": "dep_icao",
							"value": "KLAX",
							"description": "[Required] Departure airport ICAO code filter."
						},
						{
							"key": "arr_iata",
							"value": "ABQ",
							"description": "[Required] Arrival airport IATA code filter."
						},
						{
							"key": "arr_icao",
							"value": "KABQ",
							"description": "[Required] Arrival airport ICAO code filter."
						},
						{
							"key": "airline_icao",
							"value": "AAL",
							"description": "[Required] Airline ICAO code filter."
						},
						{
							"key": "airline_iata",
							"value": "AA",
							"description": "[Required] Airline IATA code filter."
						},
						{
							"key": "flight_icao",
							"value": "AAL3206",
							"description": "[Optional] Flight ICAO code-number filter.",
							"disabled": true
						},
						{
							"key": "flight_iata",
							"value": "AA3206",
							"description": "[Optional] Flight IATA code-number filter.",
							"disabled": true
						},
						{
							"key": "flight_number",
							"value": "3206",
							"description": "[Optional] Flight number filter only.",
							"disabled": true
						},
						{
							"key": "_fields",
							"value": "airline_iata, flight_number",
							"description": "[Optional] Fields to return (comma-separated, e.g., airline_iata, flight_number).",
							"disabled": true
						},
						{
							"key": "limit",
							"value": "100",
							"description": "[Optional] Maximum number of rows is 500.",
							"disabled": true
						},
						{
							"key": "offset",
							"value": "1",
							"description": "[Optional] Pagination offset for result limitss (0+ until request.has_more)",
							"disabled": true
						}
					]
				},
				"description": "The API is capable of providing data about airline routes, updated every 24 hours. In order to get airline route data, use the Airline Routes endpoint along with a series of optional parameters to filter results.\n\n#### API Response Objects:\n\n| Response Object | Description |\n| --- | --- |\n| `airline_iata` | Airline IATA code. |\n| `airline_icao` | Airline ICAO code. |\n| `flight_number` | Flight number only. |\n| `flight_iata` | Flight IATA code-number. |\n| `flight_icao` | Flight ICAO code-number. |\n| `cs_airline_iata` | Codeshared airline IATA code. |\n| `cs_flight_iata` | Codeshared flight IATA code-number. |\n| `cs_flight_number` | Codeshared flight number. |\n| `dep_iata` | Departure airport IATA code. |\n| `dep_icao` | Departure airport ICAO code. |\n| `dep_terminals` | Estimated departure terminals. |\n| `dep_time` | Departure time in the airport time zone. |\n| `dep_time_utc` | Departure time in UTC time zone. |\n| `arr_iata` | Arrival airport IATA code. |\n| `arr_icao` | Arrival airport ICAO code. |\n| `arr_terminals` | Estimated arrival terminals. |\n| `arr_time` | Arrival time in the airport time zone. |\n| `arr_time_utc` | Arrival time in UTC time zone. |\n| `duration` | Estimated flight time (in minutes). |\n| `aircraft_icao` | Aircraft ICAO type. |\n| `counter` | A numerical counter. |\n| `updated` | Timestamp of the last update. |\n| `days` | List of days when the flight operates (e.g., \\[\"fri\", \"sat\"\\]). |"
			},
			"response": []
		},
		{
			"name": "Retrieve Airlines API",
			"request": {
				"method": "GET",
				"header": [],
				"url": {
					"raw": "https://app.goflightlabs.com/airlines?access_key=YOUR_ACCESS_KEY",
					"protocol": "https",
					"host": [
						"app",
						"goflightlabs",
						"com"
					],
					"path": [
						"airlines"
					],
					"query": [
						{
							"key": "access_key",
							"value": "YOUR_ACCESS_KEY"
						},
						{
							"key": "codeIataAirline",
							"value": "AA",
							"description": "Use this parameter to get information about a specific airline, you can search based on IATA airline code.\n",
							"disabled": true
						},
						{
							"key": "codeIso2Country",
							"value": "US",
							"description": "Use this parameter to get information the airlines based on the country codes.\n",
							"disabled": true
						}
					]
				},
				"description": "To obtain information about airlines, you can use this endpoint, filtering by IataAirline and Iso2Country.\n\n#### API Response Objects:\n\n| Response Object | Description |\n| --- | --- |\n| `name` | Name of the airline |\n| `country_code` | Country code of the airline |\n| `iata_code` | IATA code of the airline |\n| `iata_prefix` | IATA prefix |\n| `iata_accounting` | IATA accounting code |\n| `icao_code` | ICAO code of the airline |\n| `callsign` | Callsign of the airline |\n| `is_international` | Indicates if the airline is international (1 for yes, 0 for no) |\n| `iosa_registered` | Indicates if the airline is registered with IOSA (1 for yes, 0 for no) |\n| `iosa_expiry` | Expiry date of IOSA registration |\n| `is_passenger` | Indicates if the airline operates passenger flights (1 for yes, 0 for no) |\n| `is_cargo` | Indicates if the airline operates cargo flights (1 for yes, 0 for no) |\n| `is_scheduled` | Indicates if the airline operates scheduled flights (1 for yes, 0 for no) |\n| `total_aircrafts` | Total number of aircraft operated by the airline |\n| `average_fleet_age` | Average age of the fleet in years |\n| `accidents_last_5y` | Number of accidents in the last 5 years |\n| `crashes_last_5y` | Number of crashes in the last 5 years |\n| `website` | Website of the airline |\n| `twitter` | Twitter handle of the airline |\n| `facebook` | Facebook page of the airline |\n| `instagram` | Instagram handle of the airline |\n| `linkedin` | LinkedIn page of the airline |"
			},
			"response": []
		},
		{
			"name": "Retrieve Airports API",
			"request": {
				"method": "GET",
				"header": [],
				"url": {
					"raw": "https://www.goflightlabs.com/retrieveAirport?access_key=YOUR_ACCESS_KEY&query=New York",
					"protocol": "https",
					"host": [
						"www",
						"goflightlabs",
						"com"
					],
					"path": [
						"retrieveAirport"
					],
					"query": [
						{
							"key": "access_key",
							"value": "YOUR_ACCESS_KEY",
							"description": "Your API access key, which can be found in your account dashboard."
						},
						{
							"key": "query",
							"value": "New York",
							"description": "Location name of the situated Airport."
						}
					]
				},
				"description": "This API endpoint allows you to retrieve a list of airports located at a specified location by using a query. The information provided by this endpoint will be useful as an input parameter for the Flight Prices API."
			},
			"response": []
		},
		{
			"name": "Retrieve Countries By Code",
			"request": {
				"method": "GET",
				"header": [],
				"url": {
					"raw": "https://www.goflightlabs.com/countries?country_code=US&access_key=YOUR_ACCESS_KEY",
					"protocol": "https",
					"host": [
						"www",
						"goflightlabs",
						"com"
					],
					"path": [
						"countries"
					],
					"query": [
						{
							"key": "country_code",
							"value": "US"
						},
						{
							"key": "access_key",
							"value": "YOUR_ACCESS_KEY"
						}
					]
				}
			},
			"response": []
		},
		{
			"name": "Retrieve Cities By IATA City Code",
			"request": {
				"method": "GET",
				"header": [],
				"url": {
					"raw": "https://www.goflightlabs.com/cities?iata_city_code=SIN&access_key=YOUR_ACCESS_KEY",
					"protocol": "https",
					"host": [
						"www",
						"goflightlabs",
						"com"
					],
					"path": [
						"cities"
					],
					"query": [
						{
							"key": "iata_city_code",
							"value": "SIN"
						},
						{
							"key": "access_key",
							"value": "YOUR_ACCESS_KEY"
						}
					]
				}
			},
			"response": []
		},
		{
			"name": "Flight Data by Date",
			"request": {
				"method": "GET",
				"header": [],
				"url": {
					"raw": "https://www.goflightlabs.com/v2/flight?access_key=YOUR_ACCESS_KEY&search_by=number&flight_number=LH811&date_from=2025-07-19&date_to=2025-07-21",
					"protocol": "https",
					"host": [
						"www",
						"goflightlabs",
						"com"
					],
					"path": [
						"v2",
						"flight"
					],
					"query": [
						{
							"key": "access_key",
							"value": "YOUR_ACCESS_KEY"
						},
						{
							"key": "search_by",
							"value": "number"
						},
						{
							"key": "flight_number",
							"value": "LH811"
						},
						{
							"key": "date_from",
							"value": "2025-07-19"
						},
						{
							"key": "date_to",
							"value": "2025-07-21"
						}
					]
				}
			},
			"response": []
		}
	]
}