0% found this document useful (0 votes)
3 views326 pages

Amadeus Self-Service APIs Overview

Amadeus for Developers provides a collection of Self-Service APIs categorized into six areas: Flight APIs, Destination Experiences APIs, Cars and Transfers APIs, Market Insights, Hotel APIs, and Itinerary Management APIs. The document outlines the authorization process using OAuth and details various API endpoints for flight search, booking, and pricing. Users can access support through documentation or a community Discord channel.

Uploaded by

sayrilamar
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views326 pages

Amadeus Self-Service APIs Overview

Amadeus for Developers provides a collection of Self-Service APIs categorized into six areas: Flight APIs, Destination Experiences APIs, Cars and Transfers APIs, Market Insights, Hotel APIs, and Itinerary Management APIs. The document outlines the authorization process using OAuth and details various API endpoints for flight search, booking, and pricing. Users can access support through documentation or a community Discord channel.

Uploaded by

sayrilamar
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

Amadeus for Developers

Welcome to the Amadeus for Developers collection. This collection features a list of Amadeus Self-
Service APIs, categorized for your convenience and learning.

The Self-Service catalog is divided into six categories:

● Flight APIs (flight search, flight booking and airport information)


● Destination Experiences APIs (tours and activities, tourist attractions and safety data)
● Cars and Transfers APIs (transfer search, booking and management)
● Market Insights (most booked and traveled destinations, plus location scores)
● Hotel APIs (hotel search, booking and ratings)
● Itinerary Management APIs (trip-planning functionalities)

🛟 Help and support

If you have any questions of Amadeus Self-Service APIs, please have a look at Amadeus for
Developers Documentation or check out our discord channel to join the community!

Authorization
OAuth uses access tokens for accessing APIs. A token represents a permission granted to a client to
access some protected resources. The method to acquire a token is called grant.

There are different types of OAuth grants. Amadeus for Developers uses the Client Credentials Grant.

POSTAccess Granted Client Credentials


Open request
[Link]
To request an access token you need to send a POST request with the following body parameters to
the authorization server:
● "grant_type" with the value "client_credentials"
● "client_id" with your API Key.
● "client_secret" with your API Secret.

Bodyurlencoded
client_id
CLIENT_ID
client_secret
CLIENT_SECRET
grant_type
client_credentials

GETGet Token Information


Open request
[Link]
Retrieves information about an existing token. The token is passed as URL parameter, for example:

[Link]

Flights
This section contains APIs related with Air content: Search & Shopping, Travel Intelligence and
Utilities.

AuthorizationBearer Token
Token

(Scenario)Basic Flight Booking flow


Add folder description…

AuthorizationBearer Token
This folder is using an authorization helper from folder Flights
POSTStep 0: Authorization
Open request
[Link]
To request an access token you need to send a POST request with the following body parameters to
the authorization server:

● "grant_type" with the value "client_credentials"


● "client_id" with your API Key.
● "client_secret" with your API Secret.

Bodyurlencoded
client_id
CLIENT_ID
client_secret
CLIENT_SECRET
grant_type
client_credentials

GETStep 1: Flight Offers Search GET


Open request
[Link]
originLocationCode=PAR&destinationLocationCode=ICN&departureDate=&returnDate=&adults=2&m
ax=5
The Flight Offers Search API allows to get cheapest flight recommendations and prices on a given
journey. It provides a list of flight recommendations and fares from a given origin (city or airport), for
a given date (or date range) and for a given list of passengers. Additional information such as bag
allowance, first ancillary bag prices or fare details are also provided.

AuthorizationBearer Token
This request is using an authorization helper from folder Flights

Query Params
originLocationCode
PAR
destinationLocationCode
ICN
departureDate
returnDate
adults
2
includedAirlineCodes
TG
max
5

POSTStep 2: Flight Offers Price


Open request
[Link]
The Flight Offers Price REST/JSON API is an open price API that enables you to get or confirm the
price of a flight and obtain information about taxes and fees to be applied to the entire journey.

AuthorizationBearer Token
This request is using an authorization helper from folder Flights

Bodyraw (json)
json
{
"data": {
"type": "flight-offers-pricing",
"flightOffers": [

]
}

POSTStep 3: Flight Create Orders


Open request
[Link]
The Flight Create Orders is an API to book flights and ancillary services proposed by the airlines like
additional checked bags or seats with extra-legroom. It returns flight order unique ID and details.

AuthorizationBearer Token
This request is using an authorization helper from folder Flights
Bodyraw (json)
View More

json
{
"data": {
"type": "flight-order",
"flightOffers": [

],
"travelers": [
{
"id": "1",
"dateOfBirth": "1982-01-16",
"name": {
"firstName": "JORGE",
"lastName": "GONZALES"
},
"gender": "MALE",
"contact": {
"emailAddress": "jorge.gonzales833@[Link]",
"phones": [
{
"deviceType": "MOBILE",
"countryCallingCode": "34",
"number": "480080076"
}
]
},
"documents": [
{
"documentType": "PASSPORT",
"birthPlace": "Madrid",
"issuanceLocation": "Madrid",
"issuanceDate": "2015-04-14",
"number": "00000000",
"expiryDate": "2025-04-14",
"issuanceCountry": "ES",
"validityCountry": "ES",
"nationality": "ES",
"holder": true
}
]
},
{
"id": "2",
"dateOfBirth": "2012-10-11",
"gender": "FEMALE",
"contact": {
"emailAddress": "jorge.gonzales833@[Link]",
"phones": [
{
"deviceType": "MOBILE",
"countryCallingCode": "34",
"number": "480080076"
}
]
},
"name": {
"firstName": "ADRIANA",
"lastName": "GONZALES"
}
}
],
"remarks": {
"general": [
{
"subType": "GENERAL_MISCELLANEOUS",
"text": "ONLINE BOOKING FROM INCREIBLE VIAJES"
}
]
},
"ticketingAgreement": {
"option": "DELAY_TO_CANCEL",
"delay": "6D"
},
"contacts": [
{
"addresseeName": {
"firstName": "PABLO",
"lastName": "RODRIGUEZ"
},
"companyName": "INCREIBLE VIAJES",
"purpose": "STANDARD",
"phones": [
{
"deviceType": "LANDLINE",
"countryCallingCode": "34",
"number": "480080071"
},
{
"deviceType": "MOBILE",
"countryCallingCode": "33",
"number": "480080072"
}
],
"emailAddress": "support@[Link]",
"address": {
"lines": [
"Calle Prado, 16"
],
"postalCode": "28014",
"cityName": "Madrid",
"countryCode": "ES"
}
}
]
}
}

Flight Booking
Add folder description…

AuthorizationBearer Token
This folder is using an authorization helper from folder Flights

GETFlight Offers Search


Open request
[Link]
originLocationCode=SYD&destinationLocationCode=BKK&departureDate=&returnDate=&adults=2&
max=5
The Flight Offers Search API allows to get cheapest flight recommendations and prices on a given
journey. It provides a list of flight recommendations and fares from a given origin (city or airport), for
a given date (or date range) and for a given list of passengers. Additional information such as bag
allowance, first ancillary bag prices or fare details are also provided.

AuthorizationBearer Token
This request is using an authorization helper from folder Flights

Query Params
originLocationCode
SYD
destinationLocationCode
BKK
departureDate
returnDate
adults
2
includedAirlineCodes
TG
max
5

Example
Flight Offers Search

Request

View More

NodeJs - Axios

const axios = require('axios');

let config = {
method: 'get',
maxBodyLength: Infinity,
url: '[Link]
originLocationCode=SYD&destinationLocationCode=BKK&adults=2&max=5&departureDate=2024-
07-16&returnDate=2024-07-30',
headers: { }
};

[Link](config)
.then((response) => {
[Link]([Link]([Link]));
})
.catch((error) => {
[Link](error);
});

200 OK

Response

Body
Headers (13)

View More

json
{
"meta": {
"count": 5,
"links": {
"self": "[Link]
originLocationCode=SYD&destinationLocationCode=BKK&adults=2&max=5&departureDate=2024-
07-16&returnDate=2024-07-30"
}
},
"data": [
{
"type": "flight-offer",
"id": "1",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2024-07-16",
"lastTicketingDateTime": "2024-07-16",
"numberOfBookableSeats": 3,
"itineraries": [
{
"duration": "PT14H15M",
"segments": [
{
"departure": {
"iataCode": "SYD",
"terminal": "1",
"at": "2024-07-16T11:35:00"
},
"arrival": {
"iataCode": "MNL",
"terminal": "1",
"at": "2024-07-16T16:50:00"
},
"carrierCode": "PR",
"number": "212",
"aircraft": {
"code": "333"
},
"operating": {
"carrierCode": "PR"
},
"duration": "PT8H15M",
"id": "5",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "MNL",
"terminal": "1",
"at": "2024-07-16T19:20:00"
},
"arrival": {
"iataCode": "BKK",
"at": "2024-07-16T21:50:00"
},
"carrierCode": "PR",
"number": "732",
"aircraft": {
"code": "321"
},
"operating": {
"carrierCode": "PR"
},
"duration": "PT3H30M",
"id": "6",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
},
{
"duration": "PT16H15M",
"segments": [
{
"departure": {
"iataCode": "BKK",
"at": "2024-07-30T13:30:00"
},
"arrival": {
"iataCode": "MNL",
"terminal": "1",
"at": "2024-07-30T18:00:00"
},
"carrierCode": "PR",
"number": "731",
"aircraft": {
"code": "333"
},
"operating": {
"carrierCode": "PR"
},
"duration": "PT3H30M",
"id": "9",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "MNL",
"terminal": "1",
"at": "2024-07-30T22:10:00"
},
"arrival": {
"iataCode": "SYD",
"terminal": "1",
"at": "2024-07-31T09:45:00"
},
"carrierCode": "PR",
"number": "211",
"aircraft": {
"code": "333"
},
"operating": {
"carrierCode": "PR"
},
"duration": "PT8H35M",
"id": "10",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "1002.64",
"base": "606.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "1002.64"
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": true
},
"validatingAirlineCodes": [
"PR"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "501.32",
"base": "303.00"
},
"fareDetailsBySegment": [
{
"segmentId": "5",
"cabin": "ECONOMY",
"fareBasis": "TBAU",
"class": "T",
"includedCheckedBags": {
"weight": 30,
"weightUnit": "KG"
}
},
{
"segmentId": "6",
"cabin": "ECONOMY",
"fareBasis": "TBAU",
"class": "T",
"includedCheckedBags": {
"weight": 30,
"weightUnit": "KG"
}
},
{
"segmentId": "9",
"cabin": "ECONOMY",
"fareBasis": "TBAU",
"class": "T",
"includedCheckedBags": {
"weight": 30,
"weightUnit": "KG"
}
},
{
"segmentId": "10",
"cabin": "ECONOMY",
"fareBasis": "TBAU",
"class": "T",
"includedCheckedBags": {
"weight": 30,
"weightUnit": "KG"
}
}
]
},
{
"travelerId": "2",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "501.32",
"base": "303.00"
},
"fareDetailsBySegment": [
{
"segmentId": "5",
"cabin": "ECONOMY",
"fareBasis": "TBAU",
"class": "T",
"includedCheckedBags": {
"weight": 30,
"weightUnit": "KG"
}
},
{
"segmentId": "6",
"cabin": "ECONOMY",
"fareBasis": "TBAU",
"class": "T",
"includedCheckedBags": {
"weight": 30,
"weightUnit": "KG"
}
},
{
"segmentId": "9",
"cabin": "ECONOMY",
"fareBasis": "TBAU",
"class": "T",
"includedCheckedBags": {
"weight": 30,
"weightUnit": "KG"
}
},
{
"segmentId": "10",
"cabin": "ECONOMY",
"fareBasis": "TBAU",
"class": "T",
"includedCheckedBags": {
"weight": 30,
"weightUnit": "KG"
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "2",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2024-07-16",
"lastTicketingDateTime": "2024-07-16",
"numberOfBookableSeats": 3,
"itineraries": [
{
"duration": "PT14H15M",
"segments": [
{
"departure": {
"iataCode": "SYD",
"terminal": "1",
"at": "2024-07-16T11:35:00"
},
"arrival": {
"iataCode": "MNL",
"terminal": "1",
"at": "2024-07-16T16:50:00"
},
"carrierCode": "PR",
"number": "212",
"aircraft": {
"code": "333"
},
"operating": {
"carrierCode": "PR"
},
"duration": "PT8H15M",
"id": "5",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "MNL",
"terminal": "1",
"at": "2024-07-16T19:20:00"
},
"arrival": {
"iataCode": "BKK",
"at": "2024-07-16T21:50:00"
},
"carrierCode": "PR",
"number": "732",
"aircraft": {
"code": "321"
},
"operating": {
"carrierCode": "PR"
},
"duration": "PT3H30M",
"id": "6",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
},
{
"duration": "PT28H15M",
"segments": [
{
"departure": {
"iataCode": "BKK",
"at": "2024-07-30T01:30:00"
},
"arrival": {
"iataCode": "MNL",
"terminal": "1",
"at": "2024-07-30T05:45:00"
},
"carrierCode": "PR",
"number": "741",
"aircraft": {
"code": "321"
},
"operating": {
"carrierCode": "PR"
},
"duration": "PT3H15M",
"id": "11",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "MNL",
"terminal": "1",
"at": "2024-07-30T22:10:00"
},
"arrival": {
"iataCode": "SYD",
"terminal": "1",
"at": "2024-07-31T09:45:00"
},
"carrierCode": "PR",
"number": "211",
"aircraft": {
"code": "333"
},
"operating": {
"carrierCode": "PR"
},
"duration": "PT8H35M",
"id": "12",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "1062.64",
"base": "666.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "1062.64"
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": true
},
"validatingAirlineCodes": [
"PR"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "531.32",
"base": "333.00"
},
"fareDetailsBySegment": [
{
"segmentId": "5",
"cabin": "ECONOMY",
"fareBasis": "TBAU",
"class": "T",
"includedCheckedBags": {
"weight": 30,
"weightUnit": "KG"
}
},
{
"segmentId": "6",
"cabin": "ECONOMY",
"fareBasis": "TBAU",
"class": "T",
"includedCheckedBags": {
"weight": 30,
"weightUnit": "KG"
}
},
{
"segmentId": "11",
"cabin": "ECONOMY",
"fareBasis": "EBAU",
"class": "E",
"includedCheckedBags": {
"weight": 30,
"weightUnit": "KG"
}
},
{
"segmentId": "12",
"cabin": "ECONOMY",
"fareBasis": "EBAU",
"class": "E",
"includedCheckedBags": {
"weight": 30,
"weightUnit": "KG"
}
}
]
},
{
"travelerId": "2",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "531.32",
"base": "333.00"
},
"fareDetailsBySegment": [
{
"segmentId": "5",
"cabin": "ECONOMY",
"fareBasis": "TBAU",
"class": "T",
"includedCheckedBags": {
"weight": 30,
"weightUnit": "KG"
}
},
{
"segmentId": "6",
"cabin": "ECONOMY",
"fareBasis": "TBAU",
"class": "T",
"includedCheckedBags": {
"weight": 30,
"weightUnit": "KG"
}
},
{
"segmentId": "11",
"cabin": "ECONOMY",
"fareBasis": "EBAU",
"class": "E",
"includedCheckedBags": {
"weight": 30,
"weightUnit": "KG"
}
},
{
"segmentId": "12",
"cabin": "ECONOMY",
"fareBasis": "EBAU",
"class": "E",
"includedCheckedBags": {
"weight": 30,
"weightUnit": "KG"
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "3",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2024-03-22",
"lastTicketingDateTime": "2024-03-22",
"numberOfBookableSeats": 9,
"itineraries": [
{
"duration": "PT16H5M",
"segments": [
{
"departure": {
"iataCode": "SYD",
"terminal": "1",
"at": "2024-07-16T20:45:00"
},
"arrival": {
"iataCode": "SIN",
"terminal": "1",
"at": "2024-07-17T03:10:00"
},
"carrierCode": "TR",
"number": "13",
"aircraft": {
"code": "789"
},
"operating": {
"carrierCode": "TR"
},
"duration": "PT8H25M",
"id": "3",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "SIN",
"terminal": "1",
"at": "2024-07-17T08:20:00"
},
"arrival": {
"iataCode": "BKK",
"at": "2024-07-17T09:50:00"
},
"carrierCode": "TR",
"number": "624",
"aircraft": {
"code": "32Q"
},
"operating": {
"carrierCode": "TR"
},
"duration": "PT2H30M",
"id": "4",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
},
{
"duration": "PT21H45M",
"segments": [
{
"departure": {
"iataCode": "BKK",
"at": "2024-07-30T10:50:00"
},
"arrival": {
"iataCode": "SIN",
"terminal": "1",
"at": "2024-07-30T14:15:00"
},
"carrierCode": "TR",
"number": "625",
"aircraft": {
"code": "32Q"
},
"operating": {
"carrierCode": "TR"
},
"duration": "PT2H25M",
"id": "13",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "SIN",
"terminal": "1",
"at": "2024-07-31T02:00:00"
},
"arrival": {
"iataCode": "SYD",
"terminal": "1",
"at": "2024-07-31T11:35:00"
},
"carrierCode": "TR",
"number": "2",
"aircraft": {
"code": "789"
},
"operating": {
"carrierCode": "TR"
},
"duration": "PT7H35M",
"id": "14",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "1106.76",
"base": "724.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "1106.76"
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": true
},
"validatingAirlineCodes": [
"SQ"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "553.38",
"base": "362.00"
},
"fareDetailsBySegment": [
{
"segmentId": "3",
"cabin": "ECONOMY",
"fareBasis": "O2TR24",
"class": "O",
"includedCheckedBags": {
"weight": 30,
"weightUnit": "KG"
}
},
{
"segmentId": "4",
"cabin": "ECONOMY",
"fareBasis": "N2TR24",
"class": "N",
"includedCheckedBags": {
"weight": 30,
"weightUnit": "KG"
}
},
{
"segmentId": "13",
"cabin": "ECONOMY",
"fareBasis": "X2TR24",
"class": "X",
"includedCheckedBags": {
"weight": 30,
"weightUnit": "KG"
}
},
{
"segmentId": "14",
"cabin": "ECONOMY",
"fareBasis": "X2TR24",
"class": "X",
"includedCheckedBags": {
"weight": 30,
"weightUnit": "KG"
}
}
]
},
{
"travelerId": "2",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "553.38",
"base": "362.00"
},
"fareDetailsBySegment": [
{
"segmentId": "3",
"cabin": "ECONOMY",
"fareBasis": "O2TR24",
"class": "O",
"includedCheckedBags": {
"weight": 30,
"weightUnit": "KG"
}
},
{
"segmentId": "4",
"cabin": "ECONOMY",
"fareBasis": "N2TR24",
"class": "N",
"includedCheckedBags": {
"weight": 30,
"weightUnit": "KG"
}
},
{
"segmentId": "13",
"cabin": "ECONOMY",
"fareBasis": "X2TR24",
"class": "X",
"includedCheckedBags": {
"weight": 30,
"weightUnit": "KG"
}
},
{
"segmentId": "14",
"cabin": "ECONOMY",
"fareBasis": "X2TR24",
"class": "X",
"includedCheckedBags": {
"weight": 30,
"weightUnit": "KG"
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "4",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2024-03-22",
"lastTicketingDateTime": "2024-03-22",
"numberOfBookableSeats": 9,
"itineraries": [
{
"duration": "PT20H55M",
"segments": [
{
"departure": {
"iataCode": "SYD",
"terminal": "1",
"at": "2024-07-16T20:45:00"
},
"arrival": {
"iataCode": "SIN",
"terminal": "1",
"at": "2024-07-17T03:10:00"
},
"carrierCode": "TR",
"number": "13",
"aircraft": {
"code": "789"
},
"operating": {
"carrierCode": "TR"
},
"duration": "PT8H25M",
"id": "7",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "SIN",
"terminal": "1",
"at": "2024-07-17T13:10:00"
},
"arrival": {
"iataCode": "BKK",
"at": "2024-07-17T14:40:00"
},
"carrierCode": "TR",
"number": "604",
"aircraft": {
"code": "32Q"
},
"operating": {
"carrierCode": "TR"
},
"duration": "PT2H30M",
"id": "8",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
},
{
"duration": "PT21H45M",
"segments": [
{
"departure": {
"iataCode": "BKK",
"at": "2024-07-30T10:50:00"
},
"arrival": {
"iataCode": "SIN",
"terminal": "1",
"at": "2024-07-30T14:15:00"
},
"carrierCode": "TR",
"number": "625",
"aircraft": {
"code": "32Q"
},
"operating": {
"carrierCode": "TR"
},
"duration": "PT2H25M",
"id": "13",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "SIN",
"terminal": "1",
"at": "2024-07-31T02:00:00"
},
"arrival": {
"iataCode": "SYD",
"terminal": "1",
"at": "2024-07-31T11:35:00"
},
"carrierCode": "TR",
"number": "2",
"aircraft": {
"code": "789"
},
"operating": {
"carrierCode": "TR"
},
"duration": "PT7H35M",
"id": "14",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "1106.76",
"base": "724.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "1106.76"
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": true
},
"validatingAirlineCodes": [
"SQ"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "553.38",
"base": "362.00"
},
"fareDetailsBySegment": [
{
"segmentId": "7",
"cabin": "ECONOMY",
"fareBasis": "O2TR24",
"class": "O",
"includedCheckedBags": {
"weight": 30,
"weightUnit": "KG"
}
},
{
"segmentId": "8",
"cabin": "ECONOMY",
"fareBasis": "N2TR24",
"class": "N",
"includedCheckedBags": {
"weight": 30,
"weightUnit": "KG"
}
},
{
"segmentId": "13",
"cabin": "ECONOMY",
"fareBasis": "X2TR24",
"class": "X",
"includedCheckedBags": {
"weight": 30,
"weightUnit": "KG"
}
},
{
"segmentId": "14",
"cabin": "ECONOMY",
"fareBasis": "X2TR24",
"class": "X",
"includedCheckedBags": {
"weight": 30,
"weightUnit": "KG"
}
}
]
},
{
"travelerId": "2",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "553.38",
"base": "362.00"
},
"fareDetailsBySegment": [
{
"segmentId": "7",
"cabin": "ECONOMY",
"fareBasis": "O2TR24",
"class": "O",
"includedCheckedBags": {
"weight": 30,
"weightUnit": "KG"
}
},
{
"segmentId": "8",
"cabin": "ECONOMY",
"fareBasis": "N2TR24",
"class": "N",
"includedCheckedBags": {
"weight": 30,
"weightUnit": "KG"
}
},
{
"segmentId": "13",
"cabin": "ECONOMY",
"fareBasis": "X2TR24",
"class": "X",
"includedCheckedBags": {
"weight": 30,
"weightUnit": "KG"
}
},
{
"segmentId": "14",
"cabin": "ECONOMY",
"fareBasis": "X2TR24",
"class": "X",
"includedCheckedBags": {
"weight": 30,
"weightUnit": "KG"
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "5",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2024-03-22",
"lastTicketingDateTime": "2024-03-22",
"numberOfBookableSeats": 9,
"itineraries": [
{
"duration": "PT23H",
"segments": [
{
"departure": {
"iataCode": "SYD",
"terminal": "1",
"at": "2024-07-16T20:45:00"
},
"arrival": {
"iataCode": "SIN",
"terminal": "1",
"at": "2024-07-17T03:10:00"
},
"carrierCode": "TR",
"number": "13",
"aircraft": {
"code": "789"
},
"operating": {
"carrierCode": "TR"
},
"duration": "PT8H25M",
"id": "1",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "SIN",
"terminal": "1",
"at": "2024-07-17T15:25:00"
},
"arrival": {
"iataCode": "BKK",
"at": "2024-07-17T16:45:00"
},
"carrierCode": "TR",
"number": "610",
"aircraft": {
"code": "789"
},
"operating": {
"carrierCode": "TR"
},
"duration": "PT2H20M",
"id": "2",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
},
{
"duration": "PT21H45M",
"segments": [
{
"departure": {
"iataCode": "BKK",
"at": "2024-07-30T10:50:00"
},
"arrival": {
"iataCode": "SIN",
"terminal": "1",
"at": "2024-07-30T14:15:00"
},
"carrierCode": "TR",
"number": "625",
"aircraft": {
"code": "32Q"
},
"operating": {
"carrierCode": "TR"
},
"duration": "PT2H25M",
"id": "13",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "SIN",
"terminal": "1",
"at": "2024-07-31T02:00:00"
},
"arrival": {
"iataCode": "SYD",
"terminal": "1",
"at": "2024-07-31T11:35:00"
},
"carrierCode": "TR",
"number": "2",
"aircraft": {
"code": "789"
},
"operating": {
"carrierCode": "TR"
},
"duration": "PT7H35M",
"id": "14",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "1106.76",
"base": "724.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "1106.76"
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": true
},
"validatingAirlineCodes": [
"SQ"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "553.38",
"base": "362.00"
},
"fareDetailsBySegment": [
{
"segmentId": "1",
"cabin": "ECONOMY",
"fareBasis": "O2TR24",
"class": "O",
"includedCheckedBags": {
"weight": 30,
"weightUnit": "KG"
}
},
{
"segmentId": "2",
"cabin": "ECONOMY",
"fareBasis": "N2TR24",
"class": "N",
"includedCheckedBags": {
"weight": 30,
"weightUnit": "KG"
}
},
{
"segmentId": "13",
"cabin": "ECONOMY",
"fareBasis": "X2TR24",
"class": "X",
"includedCheckedBags": {
"weight": 30,
"weightUnit": "KG"
}
},
{
"segmentId": "14",
"cabin": "ECONOMY",
"fareBasis": "X2TR24",
"class": "X",
"includedCheckedBags": {
"weight": 30,
"weightUnit": "KG"
}
}
]
},
{
"travelerId": "2",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "553.38",
"base": "362.00"
},
"fareDetailsBySegment": [
{
"segmentId": "1",
"cabin": "ECONOMY",
"fareBasis": "O2TR24",
"class": "O",
"includedCheckedBags": {
"weight": 30,
"weightUnit": "KG"
}
},
{
"segmentId": "2",
"cabin": "ECONOMY",
"fareBasis": "N2TR24",
"class": "N",
"includedCheckedBags": {
"weight": 30,
"weightUnit": "KG"
}
},
{
"segmentId": "13",
"cabin": "ECONOMY",
"fareBasis": "X2TR24",
"class": "X",
"includedCheckedBags": {
"weight": 30,
"weightUnit": "KG"
}
},
{
"segmentId": "14",
"cabin": "ECONOMY",
"fareBasis": "X2TR24",
"class": "X",
"includedCheckedBags": {
"weight": 30,
"weightUnit": "KG"
}
}
]
}
]
}
],
"dictionaries": {
"locations": {
"BKK": {
"cityCode": "BKK",
"countryCode": "TH"
},
"SIN": {
"cityCode": "SIN",
"countryCode": "SG"
},
"MNL": {
"cityCode": "MNL",
"countryCode": "PH"
},
"SYD": {
"cityCode": "SYD",
"countryCode": "AU"
}
},
"aircraft": {
"321": "AIRBUS A321",
"333": "AIRBUS A330-300",
"789": "BOEING 787-9",
"32Q": "AIRBUS A321NEO"
},
"currencies": {
"EUR": "EURO"
},
"carriers": {
"PR": "PHILIPPINE AIRLINES",
"TR": "SCOOT"
}
}

POSTFlight Offers Search


Open request
[Link]
The Flight Offers Search API allows to get cheapest flight recommendations and prices on a given
journey. It provides a list of flight recommendations and fares from a given origin (city or airport), for
a given date (or date range) and for a given list of passengers. Additional information such as bag
allowance, first ancillary bag prices or fare details are also provided.

AuthorizationBearer Token
This request is using an authorization helper from folder Flights

Request Headers
X-HTTP-Method-Override
GET

Bodyraw (json)
View More

json
{
"currencyCode": "USD",
"originDestinations": [
{
"id": "1",
"originLocationCode": "BOS",
"destinationLocationCode": "MAD",
"departureDateTimeRange": {
"date": "",
"time": "10:00:00"
}
},
{
"id": "2",
"originLocationCode": "MAD",
"destinationLocationCode": "BOS",
"departureDateTimeRange": {
"date": "",
"time": "17:00:00"
}
}
],
"travelers": [
{
"id": "1",
"travelerType": "ADULT",
"fareOptions": [
"STANDARD"
]
},
{
"id": "2",
"travelerType": "CHILD",
"fareOptions": [
"STANDARD"
]
}
],
"sources": [
"GDS"
],
"searchCriteria": {
"maxFlightOffers": 2,
"flightFilters": {
"cabinRestrictions": [
{
"cabin": "BUSINESS",
"coverage": "MOST_SEGMENTS",
"originDestinationIds": [
"1"
]
}
],
"carrierRestrictions": {
"excludedCarrierCodes": [
"AA",
"TP",
"AZ"
]
}
}
}

Example

Flight Offers Search

Request

View More

NodeJs - Axios

const axios = require('axios');


let data = [Link]({
"currencyCode": "USD",
"originDestinations": [
{
"id": "1",
"originLocationCode": "BOS",
"destinationLocationCode": "MAD",
"departureDateTimeRange": {
"date": "2024-04-04",
"time": "10:00:00"
}
},
{
"id": "2",
"originLocationCode": "MAD",
"destinationLocationCode": "BOS",
"departureDateTimeRange": {
"date": "2024-04-18",
"time": "17:00:00"
}
}
],
"travelers": [
{
"id": "1",
"travelerType": "ADULT",
"fareOptions": [
"STANDARD"
]
},
{
"id": "2",
"travelerType": "CHILD",
"fareOptions": [
"STANDARD"
]
}
],
"sources": [
"GDS"
],
"searchCriteria": {
"maxFlightOffers": 2,
"flightFilters": {
"cabinRestrictions": [
{
"cabin": "BUSINESS",
"coverage": "MOST_SEGMENTS",
"originDestinationIds": [
"1"
]
}
],
"carrierRestrictions": {
"excludedCarrierCodes": [
"AA",
"TP",
"AZ"
]
}
}
}
});

let config = {
method: 'post',
maxBodyLength: Infinity,
url: '[Link]
headers: {
'Content-Type': 'application/json',
'X-HTTP-Method-Override': 'GET'
},
data : data
};

[Link](config)
.then((response) => {
[Link]([Link]([Link]));
})
.catch((error) => {
[Link](error);
});

200 OK
Response

Body
Headers (13)

View More

json
{
"meta": {
"count": 2
},
"data": [
{
"type": "flight-offer",
"id": "1",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2024-03-21",
"lastTicketingDateTime": "2024-03-21",
"numberOfBookableSeats": 9,
"itineraries": [
{
"duration": "PT7H",
"segments": [
{
"departure": {
"iataCode": "BOS",
"terminal": "E",
"at": "2024-04-04T17:00:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "4S",
"at": "2024-04-05T06:00:00"
},
"carrierCode": "IB",
"number": "6166",
"aircraft": {
"code": "330"
},
"operating": {
"carrierCode": "IB"
},
"duration": "PT7H",
"id": "1",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
},
{
"duration": "PT29H5M",
"segments": [
{
"departure": {
"iataCode": "MAD",
"terminal": "4S",
"at": "2024-04-18T20:45:00"
},
"arrival": {
"iataCode": "LHR",
"terminal": "5",
"at": "2024-04-18T22:00:00"
},
"carrierCode": "IB",
"number": "7467",
"aircraft": {
"code": "319"
},
"operating": {
"carrierCode": "BA"
},
"duration": "PT2H15M",
"id": "4",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "LHR",
"terminal": "5",
"at": "2024-04-19T17:15:00"
},
"arrival": {
"iataCode": "BOS",
"terminal": "E",
"at": "2024-04-19T19:50:00"
},
"carrierCode": "AY",
"number": "5503",
"aircraft": {
"code": "781"
},
"operating": {
"carrierCode": "BA"
},
"duration": "PT7H35M",
"id": "5",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "USD",
"total": "6502.20",
"base": "3898.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "6502.20"
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": false
},
"validatingAirlineCodes": [
"IB"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "USD",
"total": "3251.10",
"base": "1949.00"
},
"fareDetailsBySegment": [
{
"segmentId": "1",
"cabin": "BUSINESS",
"fareBasis": "INX4A3S5",
"brandedFare": "BUSOPTIMA",
"brandedFareLabel": "BUSINESS OPTIMA",
"class": "I",
"includedCheckedBags": {
"quantity": 2
},
"amenities": [
{
"description": "THIRD CHECKED BAG",
"isChargeable": true,
"amenityType": "BAGGAGE",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "MEAL",
"isChargeable": false,
"amenityType": "MEAL",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "SNACK OR DRINK",
"isChargeable": false,
"amenityType": "MEAL",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "PRIORITY CHECK IN",
"isChargeable": false,
"amenityType": "TRAVEL_SERVICES",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "WIFI CONNECTION",
"isChargeable": true,
"amenityType": "TRAVEL_SERVICES",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "PRIORITY BOARDING GROUP 1",
"isChargeable": false,
"amenityType": "TRAVEL_SERVICES",
"amenityProvider": {
"name": "BrandedFare"
}
}
]
},
{
"segmentId": "4",
"cabin": "BUSINESS",
"fareBasis": "INX4A3S5",
"class": "J",
"includedCheckedBags": {
"quantity": 1
}
},
{
"segmentId": "5",
"cabin": "ECONOMY",
"fareBasis": "LLX4F0M5",
"class": "L",
"includedCheckedBags": {
"quantity": 1
}
}
]
},
{
"travelerId": "2",
"fareOption": "STANDARD",
"travelerType": "CHILD",
"price": {
"currency": "USD",
"total": "3251.10",
"base": "1949.00"
},
"fareDetailsBySegment": [
{
"segmentId": "1",
"cabin": "BUSINESS",
"fareBasis": "INX4A3S5",
"brandedFare": "BUSOPTIMA",
"brandedFareLabel": "BUSINESS OPTIMA",
"class": "I",
"amenities": [
{
"description": "THIRD CHECKED BAG",
"isChargeable": true,
"amenityType": "BAGGAGE",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "MEAL",
"isChargeable": false,
"amenityType": "MEAL",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "SNACK OR DRINK",
"isChargeable": false,
"amenityType": "MEAL",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "PRIORITY CHECK IN",
"isChargeable": false,
"amenityType": "TRAVEL_SERVICES",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "WIFI CONNECTION",
"isChargeable": true,
"amenityType": "TRAVEL_SERVICES",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "PRIORITY BOARDING GROUP 1",
"isChargeable": false,
"amenityType": "TRAVEL_SERVICES",
"amenityProvider": {
"name": "BrandedFare"
}
}
]
},
{
"segmentId": "4",
"cabin": "BUSINESS",
"fareBasis": "INX4A3S5",
"class": "J"
},
{
"segmentId": "5",
"cabin": "ECONOMY",
"fareBasis": "LLX4F0M5",
"class": "L"
}
]
}
]
},
{
"type": "flight-offer",
"id": "2",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2024-03-21",
"lastTicketingDateTime": "2024-03-21",
"numberOfBookableSeats": 9,
"itineraries": [
{
"duration": "PT11H40M",
"segments": [
{
"departure": {
"iataCode": "BOS",
"terminal": "B",
"at": "2024-04-04T16:40:00"
},
"arrival": {
"iataCode": "YYZ",
"terminal": "1",
"at": "2024-04-04T18:43:00"
},
"carrierCode": "AC",
"number": "8699",
"aircraft": {
"code": "E75"
},
"duration": "PT2H3M",
"id": "2",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "YYZ",
"terminal": "1",
"at": "2024-04-04T20:55:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "1",
"at": "2024-04-05T10:20:00"
},
"carrierCode": "AC",
"number": "824",
"aircraft": {
"code": "788"
},
"operating": {
"carrierCode": "AC"
},
"duration": "PT7H25M",
"id": "3",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
},
{
"duration": "PT23H23M",
"segments": [
{
"departure": {
"iataCode": "MAD",
"terminal": "2",
"at": "2024-04-18T21:15:00"
},
"arrival": {
"iataCode": "BRU",
"at": "2024-04-18T23:25:00"
},
"carrierCode": "SN",
"number": "3730",
"aircraft": {
"code": "319"
},
"operating": {
"carrierCode": "SN"
},
"duration": "PT2H10M",
"id": "6",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "BRU",
"at": "2024-04-19T10:00:00"
},
"arrival": {
"iataCode": "YUL",
"at": "2024-04-19T11:30:00"
},
"carrierCode": "SN",
"number": "9551",
"aircraft": {
"code": "77W"
},
"operating": {
"carrierCode": "AC"
},
"duration": "PT7H30M",
"id": "7",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "YUL",
"at": "2024-04-19T13:10:00"
},
"arrival": {
"iataCode": "BOS",
"terminal": "B",
"at": "2024-04-19T14:38:00"
},
"carrierCode": "SN",
"number": "9617",
"aircraft": {
"code": "E75"
},
"duration": "PT1H28M",
"id": "8",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "USD",
"total": "6846.40",
"base": "4180.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "6846.40"
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": false
},
"validatingAirlineCodes": [
"AC"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "USD",
"total": "3423.20",
"base": "2090.00"
},
"fareDetailsBySegment": [
{
"segmentId": "2",
"cabin": "BUSINESS",
"fareBasis": "ZNX49ENC",
"brandedFare": "EXECLOW",
"brandedFareLabel": "BUSINESS LOWEST",
"class": "Z",
"includedCheckedBags": {
"quantity": 2
},
"amenities": [
{
"description": "COMPLIMENTARY MEAL",
"isChargeable": false,
"amenityType": "MEAL",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "PRIORITY CHECK IN",
"isChargeable": false,
"amenityType": "TRAVEL_SERVICES",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "BASIC SEAT",
"isChargeable": false,
"amenityType": "BRANDED_FARES",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "CHANGEABLE TICKET",
"isChargeable": true,
"amenityType": "BRANDED_FARES",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "PREMIUM SEAT",
"isChargeable": false,
"amenityType": "BRANDED_FARES",
"amenityProvider": {
"name": "BrandedFare"
}
}
]
},
{
"segmentId": "3",
"cabin": "BUSINESS",
"fareBasis": "ZNX49ENC",
"brandedFare": "EXECLOW",
"brandedFareLabel": "BUSINESS LOWEST",
"class": "Z",
"includedCheckedBags": {
"quantity": 2
},
"amenities": [
{
"description": "COMPLIMENTARY MEAL",
"isChargeable": false,
"amenityType": "MEAL",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "PRIORITY CHECK IN",
"isChargeable": false,
"amenityType": "TRAVEL_SERVICES",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "BASIC SEAT",
"isChargeable": false,
"amenityType": "BRANDED_FARES",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "CHANGEABLE TICKET",
"isChargeable": true,
"amenityType": "BRANDED_FARES",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "PREMIUM SEAT",
"isChargeable": false,
"amenityType": "BRANDED_FARES",
"amenityProvider": {
"name": "BrandedFare"
}
}
]
},
{
"segmentId": "6",
"cabin": "ECONOMY",
"fareBasis": "KKX76NCT",
"brandedFare": "ECOSTAND",
"brandedFareLabel": "ECO STANDARD",
"class": "K",
"includedCheckedBags": {
"quantity": 1
},
"amenities": [
{
"description": "CATERING ON EUROPE FLTS",
"isChargeable": true,
"amenityType": "MEAL",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "CATERING ON INTERCONT FLTS",
"isChargeable": false,
"amenityType": "MEAL",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "STANDARD SEAT RESERVATION",
"isChargeable": true,
"amenityType": "BRANDED_FARES",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "MILEAGE ACCRUAL",
"isChargeable": false,
"amenityType": "BRANDED_FARES",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "UPGRADE ELIGIBILITY",
"isChargeable": true,
"amenityType": "BRANDED_FARES",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "PREFERRED SEAT RESERVATION",
"isChargeable": true,
"amenityType": "BRANDED_FARES",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "INFLIGHT ENTERTAINMENT",
"isChargeable": false,
"amenityType": "ENTERTAINMENT",
"amenityProvider": {
"name": "BrandedFare"
}
}
]
},
{
"segmentId": "7",
"cabin": "ECONOMY",
"fareBasis": "KKX76NCT",
"brandedFare": "ECOSTAND",
"brandedFareLabel": "ECO STANDARD",
"class": "K",
"includedCheckedBags": {
"quantity": 1
},
"amenities": [
{
"description": "CATERING ON EUROPE FLTS",
"isChargeable": true,
"amenityType": "MEAL",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "CATERING ON INTERCONT FLTS",
"isChargeable": false,
"amenityType": "MEAL",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "STANDARD SEAT RESERVATION",
"isChargeable": true,
"amenityType": "BRANDED_FARES",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "MILEAGE ACCRUAL",
"isChargeable": false,
"amenityType": "BRANDED_FARES",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "UPGRADE ELIGIBILITY",
"isChargeable": true,
"amenityType": "BRANDED_FARES",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "PREFERRED SEAT RESERVATION",
"isChargeable": true,
"amenityType": "BRANDED_FARES",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "INFLIGHT ENTERTAINMENT",
"isChargeable": false,
"amenityType": "ENTERTAINMENT",
"amenityProvider": {
"name": "BrandedFare"
}
}
]
},
{
"segmentId": "8",
"cabin": "ECONOMY",
"fareBasis": "KKX76NCT",
"brandedFare": "ECOSTAND",
"brandedFareLabel": "ECO STANDARD",
"class": "K",
"includedCheckedBags": {
"quantity": 1
},
"amenities": [
{
"description": "CATERING ON EUROPE FLTS",
"isChargeable": true,
"amenityType": "MEAL",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "CATERING ON INTERCONT FLTS",
"isChargeable": false,
"amenityType": "MEAL",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "STANDARD SEAT RESERVATION",
"isChargeable": true,
"amenityType": "BRANDED_FARES",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "MILEAGE ACCRUAL",
"isChargeable": false,
"amenityType": "BRANDED_FARES",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "UPGRADE ELIGIBILITY",
"isChargeable": true,
"amenityType": "BRANDED_FARES",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "PREFERRED SEAT RESERVATION",
"isChargeable": true,
"amenityType": "BRANDED_FARES",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "INFLIGHT ENTERTAINMENT",
"isChargeable": false,
"amenityType": "ENTERTAINMENT",
"amenityProvider": {
"name": "BrandedFare"
}
}
]
}
]
},
{
"travelerId": "2",
"fareOption": "STANDARD",
"travelerType": "CHILD",
"price": {
"currency": "USD",
"total": "3423.20",
"base": "2090.00"
},
"fareDetailsBySegment": [
{
"segmentId": "2",
"cabin": "BUSINESS",
"fareBasis": "ZNX49ENC",
"brandedFare": "EXECLOW",
"brandedFareLabel": "BUSINESS LOWEST",
"class": "Z",
"amenities": [
{
"description": "COMPLIMENTARY MEAL",
"isChargeable": false,
"amenityType": "MEAL",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "PRIORITY CHECK IN",
"isChargeable": false,
"amenityType": "TRAVEL_SERVICES",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "BASIC SEAT",
"isChargeable": false,
"amenityType": "BRANDED_FARES",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "CHANGEABLE TICKET",
"isChargeable": true,
"amenityType": "BRANDED_FARES",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "PREMIUM SEAT",
"isChargeable": false,
"amenityType": "BRANDED_FARES",
"amenityProvider": {
"name": "BrandedFare"
}
}
]
},
{
"segmentId": "3",
"cabin": "BUSINESS",
"fareBasis": "ZNX49ENC",
"brandedFare": "EXECLOW",
"brandedFareLabel": "BUSINESS LOWEST",
"class": "Z",
"amenities": [
{
"description": "COMPLIMENTARY MEAL",
"isChargeable": false,
"amenityType": "MEAL",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "PRIORITY CHECK IN",
"isChargeable": false,
"amenityType": "TRAVEL_SERVICES",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "BASIC SEAT",
"isChargeable": false,
"amenityType": "BRANDED_FARES",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "CHANGEABLE TICKET",
"isChargeable": true,
"amenityType": "BRANDED_FARES",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "PREMIUM SEAT",
"isChargeable": false,
"amenityType": "BRANDED_FARES",
"amenityProvider": {
"name": "BrandedFare"
}
}
]
},
{
"segmentId": "6",
"cabin": "ECONOMY",
"fareBasis": "KKX76NCT",
"brandedFare": "ECOSTAND",
"brandedFareLabel": "ECO STANDARD",
"class": "K",
"amenities": [
{
"description": "CATERING ON EUROPE FLTS",
"isChargeable": true,
"amenityType": "MEAL",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "CATERING ON INTERCONT FLTS",
"isChargeable": false,
"amenityType": "MEAL",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "STANDARD SEAT RESERVATION",
"isChargeable": true,
"amenityType": "BRANDED_FARES",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "MILEAGE ACCRUAL",
"isChargeable": false,
"amenityType": "BRANDED_FARES",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "UPGRADE ELIGIBILITY",
"isChargeable": true,
"amenityType": "BRANDED_FARES",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "PREFERRED SEAT RESERVATION",
"isChargeable": true,
"amenityType": "BRANDED_FARES",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "INFLIGHT ENTERTAINMENT",
"isChargeable": false,
"amenityType": "ENTERTAINMENT",
"amenityProvider": {
"name": "BrandedFare"
}
}
]
},
{
"segmentId": "7",
"cabin": "ECONOMY",
"fareBasis": "KKX76NCT",
"brandedFare": "ECOSTAND",
"brandedFareLabel": "ECO STANDARD",
"class": "K",
"amenities": [
{
"description": "CATERING ON EUROPE FLTS",
"isChargeable": true,
"amenityType": "MEAL",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "CATERING ON INTERCONT FLTS",
"isChargeable": false,
"amenityType": "MEAL",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "STANDARD SEAT RESERVATION",
"isChargeable": true,
"amenityType": "BRANDED_FARES",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "MILEAGE ACCRUAL",
"isChargeable": false,
"amenityType": "BRANDED_FARES",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "UPGRADE ELIGIBILITY",
"isChargeable": true,
"amenityType": "BRANDED_FARES",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "PREFERRED SEAT RESERVATION",
"isChargeable": true,
"amenityType": "BRANDED_FARES",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "INFLIGHT ENTERTAINMENT",
"isChargeable": false,
"amenityType": "ENTERTAINMENT",
"amenityProvider": {
"name": "BrandedFare"
}
}
]
},
{
"segmentId": "8",
"cabin": "ECONOMY",
"fareBasis": "KKX76NCT",
"brandedFare": "ECOSTAND",
"brandedFareLabel": "ECO STANDARD",
"class": "K",
"amenities": [
{
"description": "CATERING ON EUROPE FLTS",
"isChargeable": true,
"amenityType": "MEAL",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "CATERING ON INTERCONT FLTS",
"isChargeable": false,
"amenityType": "MEAL",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "STANDARD SEAT RESERVATION",
"isChargeable": true,
"amenityType": "BRANDED_FARES",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "MILEAGE ACCRUAL",
"isChargeable": false,
"amenityType": "BRANDED_FARES",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "UPGRADE ELIGIBILITY",
"isChargeable": true,
"amenityType": "BRANDED_FARES",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "PREFERRED SEAT RESERVATION",
"isChargeable": true,
"amenityType": "BRANDED_FARES",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "INFLIGHT ENTERTAINMENT",
"isChargeable": false,
"amenityType": "ENTERTAINMENT",
"amenityProvider": {
"name": "BrandedFare"
}
}
]
}
]
}
]
}
],
"dictionaries": {
"locations": {
"MAD": {
"cityCode": "MAD",
"countryCode": "ES"
},
"YUL": {
"cityCode": "YMQ",
"countryCode": "CA"
},
"BRU": {
"cityCode": "BRU",
"countryCode": "BE"
},
"BOS": {
"cityCode": "BOS",
"countryCode": "US"
},
"LHR": {
"cityCode": "LON",
"countryCode": "GB"
},
"YYZ": {
"cityCode": "YTO",
"countryCode": "CA"
}
},
"aircraft": {
"319": "AIRBUS A319",
"330": "AIRBUS INDUSTRIE A330",
"781": "BOEING 787-10",
"788": "BOEING 787-8",
"E75": "EMBRAER 175",
"77W": "BOEING 777-300ER"
},
"currencies": {
"USD": "US DOLLAR"
},
"carriers": {
"AC": "AIR CANADA",
"AY": "FINNAIR",
"IB": "IBERIA",
"SN": "BRUSSELS AIRLINES",
"BA": "BRITISH AIRWAYS"
}
}
}

POSTFlight Offers Price


Open request
[Link]
The Flight Offers Price REST/JSON API is an open price API that enables you to get or confirm the
price of a flight and obtain information about taxes and fees to be applied to the entire journey.

AuthorizationBearer Token
This request is using an authorization helper from folder Flights

Request Headers
X-HTTP-Method-Override
GET

Bodyraw (json)
json
{
"data": {
"type": "flight-offers-pricing",
"flightOffers": [

]
}

Example

Flight Offers Price

Request

View More

NodeJs - Axios

const axios = require('axios');


let data = [Link]({
"data": {
"type": "flight-offers-pricing",
"flightOffers": [
{
"type": "flight-offer",
"id": "1",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2024-03-21",
"lastTicketingDateTime": "2024-03-21",
"numberOfBookableSeats": 9,
"itineraries": [
{
"duration": "PT7H",
"segments": [
{
"departure": {
"iataCode": "BOS",
"terminal": "E",
"at": "2024-04-04T17:00:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "4S",
"at": "2024-04-05T06:00:00"
},
"carrierCode": "IB",
"number": "6166",
"aircraft": {
"code": "330"
},
"operating": {
"carrierCode": "IB"
},
"duration": "PT7H",
"id": "1",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
},
{
"duration": "PT29H5M",
"segments": [
{
"departure": {
"iataCode": "MAD",
"terminal": "4S",
"at": "2024-04-18T20:45:00"
},
"arrival": {
"iataCode": "LHR",
"terminal": "5",
"at": "2024-04-18T22:00:00"
},
"carrierCode": "IB",
"number": "7467",
"aircraft": {
"code": "319"
},
"operating": {
"carrierCode": "BA"
},
"duration": "PT2H15M",
"id": "4",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "LHR",
"terminal": "5",
"at": "2024-04-19T17:15:00"
},
"arrival": {
"iataCode": "BOS",
"terminal": "E",
"at": "2024-04-19T19:50:00"
},
"carrierCode": "AY",
"number": "5503",
"aircraft": {
"code": "781"
},
"operating": {
"carrierCode": "BA"
},
"duration": "PT7H35M",
"id": "5",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "USD",
"total": "6502.20",
"base": "3898.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "6502.20"
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": false
},
"validatingAirlineCodes": [
"IB"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "USD",
"total": "3251.10",
"base": "1949.00"
},
"fareDetailsBySegment": [
{
"segmentId": "1",
"cabin": "BUSINESS",
"fareBasis": "INX4A3S5",
"brandedFare": "BUSOPTIMA",
"brandedFareLabel": "BUSINESS OPTIMA",
"class": "I",
"includedCheckedBags": {
"quantity": 2
},
"amenities": [
{
"description": "THIRD CHECKED BAG",
"isChargeable": true,
"amenityType": "BAGGAGE",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "MEAL",
"isChargeable": false,
"amenityType": "MEAL",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "SNACK OR DRINK",
"isChargeable": false,
"amenityType": "MEAL",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "PRIORITY CHECK IN",
"isChargeable": false,
"amenityType": "TRAVEL_SERVICES",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "WIFI CONNECTION",
"isChargeable": true,
"amenityType": "TRAVEL_SERVICES",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "PRIORITY BOARDING GROUP 1",
"isChargeable": false,
"amenityType": "TRAVEL_SERVICES",
"amenityProvider": {
"name": "BrandedFare"
}
}
]
},
{
"segmentId": "4",
"cabin": "BUSINESS",
"fareBasis": "INX4A3S5",
"class": "J",
"includedCheckedBags": {
"quantity": 1
}
},
{
"segmentId": "5",
"cabin": "ECONOMY",
"fareBasis": "LLX4F0M5",
"class": "L",
"includedCheckedBags": {
"quantity": 1
}
}
]
},
{
"travelerId": "2",
"fareOption": "STANDARD",
"travelerType": "CHILD",
"price": {
"currency": "USD",
"total": "3251.10",
"base": "1949.00"
},
"fareDetailsBySegment": [
{
"segmentId": "1",
"cabin": "BUSINESS",
"fareBasis": "INX4A3S5",
"brandedFare": "BUSOPTIMA",
"brandedFareLabel": "BUSINESS OPTIMA",
"class": "I",
"amenities": [
{
"description": "THIRD CHECKED BAG",
"isChargeable": true,
"amenityType": "BAGGAGE",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "MEAL",
"isChargeable": false,
"amenityType": "MEAL",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "SNACK OR DRINK",
"isChargeable": false,
"amenityType": "MEAL",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "PRIORITY CHECK IN",
"isChargeable": false,
"amenityType": "TRAVEL_SERVICES",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "WIFI CONNECTION",
"isChargeable": true,
"amenityType": "TRAVEL_SERVICES",
"amenityProvider": {
"name": "BrandedFare"
}
},
{
"description": "PRIORITY BOARDING GROUP 1",
"isChargeable": false,
"amenityType": "TRAVEL_SERVICES",
"amenityProvider": {
"name": "BrandedFare"
}
}
]
},
{
"segmentId": "4",
"cabin": "BUSINESS",
"fareBasis": "INX4A3S5",
"class": "J"
},
{
"segmentId": "5",
"cabin": "ECONOMY",
"fareBasis": "LLX4F0M5",
"class": "L"
}
]
}
]
}
]
}
});

let config = {
method: 'post',
maxBodyLength: Infinity,
url: '[Link]
headers: {
'Content-Type': 'application/json',
'X-HTTP-Method-Override': 'GET'
},
data : data
};

[Link](config)
.then((response) => {
[Link]([Link]([Link]));
})
.catch((error) => {
[Link](error);
});

200 OK

Response

Body
Headers (13)
View More

json
{
"data": {
"type": "flight-offers-pricing",
"flightOffers": [
{
"type": "flight-offer",
"id": "1",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"paymentCardRequired": false,
"lastTicketingDate": "2024-03-21",
"itineraries": [
{
"segments": [
{
"departure": {
"iataCode": "BOS",
"terminal": "E",
"at": "2024-04-04T17:00:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "4S",
"at": "2024-04-05T06:00:00"
},
"carrierCode": "IB",
"number": "6166",
"aircraft": {
"code": "330"
},
"operating": {
"carrierCode": "IB"
},
"duration": "PT7H",
"id": "1",
"numberOfStops": 0,
"co2Emissions": [
{
"weight": 594,
"weightUnit": "KG",
"cabin": "BUSINESS"
}
]
}
]
},
{
"segments": [
{
"departure": {
"iataCode": "MAD",
"terminal": "4S",
"at": "2024-04-18T20:45:00"
},
"arrival": {
"iataCode": "LHR",
"terminal": "5",
"at": "2024-04-18T22:00:00"
},
"carrierCode": "IB",
"number": "7467",
"aircraft": {
"code": "319"
},
"operating": {
"carrierCode": "BA"
},
"duration": "PT2H15M",
"id": "4",
"numberOfStops": 0,
"co2Emissions": [
{
"weight": 116,
"weightUnit": "KG",
"cabin": "BUSINESS"
}
]
},
{
"departure": {
"iataCode": "LHR",
"terminal": "5",
"at": "2024-04-19T17:15:00"
},
"arrival": {
"iataCode": "BOS",
"terminal": "E",
"at": "2024-04-19T19:50:00"
},
"carrierCode": "AY",
"number": "5503",
"aircraft": {
"code": "781"
},
"operating": {
"carrierCode": "BA"
},
"duration": "PT7H35M",
"id": "5",
"numberOfStops": 0,
"co2Emissions": [
{
"weight": 282,
"weightUnit": "KG",
"cabin": "ECONOMY"
}
]
}
]
}
],
"price": {
"currency": "USD",
"total": "6502.20",
"base": "3898.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
},
{
"amount": "0.00",
"type": "FORM_OF_PAYMENT"
}
],
"grandTotal": "6502.20",
"billingCurrency": "USD"
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": false
},
"validatingAirlineCodes": [
"IB"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "USD",
"total": "3251.10",
"base": "1949.00",
"taxes": [
{
"amount": "7.00",
"code": "XY"
},
{
"amount": "3.90",
"code": "QV"
},
{
"amount": "985.00",
"code": "YQ"
},
{
"amount": "5.60",
"code": "AY"
},
{
"amount": "0.70",
"code": "OG"
},
{
"amount": "186.00",
"code": "YR"
},
{
"amount": "3.83",
"code": "XA"
},
{
"amount": "6.97",
"code": "YC"
},
{
"amount": "16.00",
"code": "JD"
},
{
"amount": "38.20",
"code": "UB"
},
{
"amount": "44.40",
"code": "US"
},
{
"amount": "4.50",
"code": "XF"
}
],
"refundableTaxes": "82.20"
},
"fareDetailsBySegment": [
{
"segmentId": "1",
"cabin": "BUSINESS",
"fareBasis": "INX4A3S5",
"brandedFare": "BUSOPTIMA",
"class": "I",
"includedCheckedBags": {
"quantity": 2
}
},
{
"segmentId": "4",
"cabin": "BUSINESS",
"fareBasis": "INX4A3S5",
"brandedFare": "BUSOPTIMA",
"class": "J",
"includedCheckedBags": {
"quantity": 1
}
},
{
"segmentId": "5",
"cabin": "ECONOMY",
"fareBasis": "LLX4F0M5",
"brandedFare": "ECLASSIC",
"class": "L",
"includedCheckedBags": {
"quantity": 1
}
}
]
},
{
"travelerId": "2",
"fareOption": "STANDARD",
"travelerType": "CHILD",
"price": {
"currency": "USD",
"total": "3251.10",
"base": "1949.00",
"taxes": [
{
"amount": "7.00",
"code": "XY"
},
{
"amount": "3.90",
"code": "QV"
},
{
"amount": "985.00",
"code": "YQ"
},
{
"amount": "5.60",
"code": "AY"
},
{
"amount": "0.70",
"code": "OG"
},
{
"amount": "186.00",
"code": "YR"
},
{
"amount": "3.83",
"code": "XA"
},
{
"amount": "6.97",
"code": "YC"
},
{
"amount": "16.00",
"code": "JD"
},
{
"amount": "38.20",
"code": "UB"
},
{
"amount": "44.40",
"code": "US"
},
{
"amount": "4.50",
"code": "XF"
}
],
"refundableTaxes": "82.20"
},
"fareDetailsBySegment": [
{
"segmentId": "1",
"cabin": "BUSINESS",
"fareBasis": "INX4A3S5",
"brandedFare": "BUSOPTIMA",
"class": "I",
"includedCheckedBags": {
"quantity": 2
}
},
{
"segmentId": "4",
"cabin": "BUSINESS",
"fareBasis": "INX4A3S5",
"brandedFare": "BUSOPTIMA",
"class": "J",
"includedCheckedBags": {
"quantity": 1
}
},
{
"segmentId": "5",
"cabin": "ECONOMY",
"fareBasis": "LLX4F0M5",
"brandedFare": "ECLASSIC",
"class": "L",
"includedCheckedBags": {
"quantity": 1
}
}
]
}
]
}
],
"bookingRequirements": {
"emailAddressRequired": true,
"mobilePhoneNumberRequired": true,
"travelerRequirements": [
{
"travelerId": "1",
"genderRequired": true,
"documentRequired": true,
"dateOfBirthRequired": true,
"redressRequiredIfAny": true,
"residenceRequired": true
},
{
"travelerId": "2",
"genderRequired": true,
"documentRequired": true,
"dateOfBirthRequired": true,
"redressRequiredIfAny": true,
"residenceRequired": true
}
]
}
},
"dictionaries": {
"locations": {
"MAD": {
"cityCode": "MAD",
"countryCode": "ES"
},
"BOS": {
"cityCode": "BOS",
"countryCode": "US"
},
"LHR": {
"cityCode": "LON",
"countryCode": "GB"
}
}
}

POSTFlight Create Orders


Open request
[Link]
The Flight Create Orders is an API to book flights and ancillary services proposed by the airlines like
additional checked bags or seats with extra-legroom. It returns flight order unique ID and details.

AuthorizationBearer Token
This request is using an authorization helper from folder Flights

Bodyraw (json)
View More

json
{
"data": {
"type": "flight-order",
"flightOffers": [

],
"travelers": [
{
"id": "1",
"dateOfBirth": "1982-01-16",
"name": {
"firstName": "JORGE",
"lastName": "GONZALES"
},
"gender": "MALE",
"contact": {
"emailAddress": "jorge.gonzales833@[Link]",
"phones": [
{
"deviceType": "MOBILE",
"countryCallingCode": "34",
"number": "480080076"
}
]
},
"documents": [
{
"documentType": "PASSPORT",
"birthPlace": "Madrid",
"issuanceLocation": "Madrid",
"issuanceDate": "2015-04-14",
"number": "00000000",
"expiryDate": "2025-04-14",
"issuanceCountry": "ES",
"validityCountry": "ES",
"nationality": "ES",
"holder": true
}
]
},
{
"id": "2",
"dateOfBirth": "2012-10-11",
"gender": "FEMALE",
"contact": {
"emailAddress": "jorge.gonzales833@[Link]",
"phones": [
{
"deviceType": "MOBILE",
"countryCallingCode": "34",
"number": "480080076"
}
]
},
"name": {
"firstName": "ADRIANA",
"lastName": "GONZALES"
}
}
],
"remarks": {
"general": [
{
"subType": "GENERAL_MISCELLANEOUS",
"text": "ONLINE BOOKING FROM INCREIBLE VIAJES"
}
]
},
"ticketingAgreement": {
"option": "DELAY_TO_CANCEL",
"delay": "6D"
},
"contacts": [
{
"addresseeName": {
"firstName": "PABLO",
"lastName": "RODRIGUEZ"
},
"companyName": "INCREIBLE VIAJES",
"purpose": "STANDARD",
"phones": [
{
"deviceType": "LANDLINE",
"countryCallingCode": "34",
"number": "480080071"
},
{
"deviceType": "MOBILE",
"countryCallingCode": "33",
"number": "480080072"
}
],
"emailAddress": "support@[Link]",
"address": {
"lines": [
"Calle Prado, 16"
],
"postalCode": "28014",
"cityName": "Madrid",
"countryCode": "ES"
}
}
]
}

Example

Flight Create Orders

Request

View More

NodeJs - Axios

const axios = require('axios');


let data = [Link]({
"data": {
"type": "flight-order",
"flightOffers": [
{
"type": "flight-offer",
"id": "1",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"paymentCardRequired": false,
"lastTicketingDate": "2024-04-03",
"itineraries": [
{
"segments": [
{
"departure": {
"iataCode": "BOS",
"terminal": "E",
"at": "2024-04-17T17:20:00"
},
"arrival": {
"iataCode": "CDG",
"terminal": "2E",
"at": "2024-04-18T06:05:00"
},
"carrierCode": "AF",
"number": "333",
"aircraft": {
"code": "359"
},
"operating": {
"carrierCode": "AF"
},
"duration": "PT6H45M",
"id": "1",
"numberOfStops": 0,
"co2Emissions": [
{
"weight": 556,
"weightUnit": "KG",
"cabin": "BUSINESS"
}
]
},
{
"departure": {
"iataCode": "CDG",
"terminal": "2F",
"at": "2024-04-18T07:05:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "2",
"at": "2024-04-18T09:15:00"
},
"carrierCode": "AF",
"number": "1000",
"aircraft": {
"code": "319"
},
"operating": {
"carrierCode": "AF"
},
"duration": "PT2H10M",
"id": "2",
"numberOfStops": 0,
"co2Emissions": [
{
"weight": 105,
"weightUnit": "KG",
"cabin": "BUSINESS"
}
]
}
]
},
{
"segments": [
{
"departure": {
"iataCode": "MAD",
"terminal": "2",
"at": "2024-05-01T20:15:00"
},
"arrival": {
"iataCode": "CDG",
"terminal": "2F",
"at": "2024-05-01T22:20:00"
},
"carrierCode": "AF",
"number": "1101",
"aircraft": {
"code": "321"
},
"operating": {
"carrierCode": "AF"
},
"duration": "PT2H5M",
"id": "5",
"numberOfStops": 0,
"co2Emissions": [
{
"weight": 105,
"weightUnit": "KG",
"cabin": "ECONOMY"
}
]
},
{
"departure": {
"iataCode": "CDG",
"terminal": "2E",
"at": "2024-05-02T13:35:00"
},
"arrival": {
"iataCode": "BOS",
"terminal": "E",
"at": "2024-05-02T15:10:00"
},
"carrierCode": "AF",
"number": "334",
"aircraft": {
"code": "359"
},
"operating": {
"carrierCode": "AF"
},
"duration": "PT7H35M",
"id": "6",
"numberOfStops": 0,
"co2Emissions": [
{
"weight": 278,
"weightUnit": "KG",
"cabin": "ECONOMY"
}
]
}
]
}
],
"price": {
"currency": "USD",
"total": "7151.60",
"base": "4410.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
},
{
"amount": "0.00",
"type": "FORM_OF_PAYMENT"
}
],
"grandTotal": "7151.60",
"billingCurrency": "USD"
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": false
},
"validatingAirlineCodes": [
"AF"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "USD",
"total": "3575.80",
"base": "2205.00",
"taxes": [
{
"amount": "7.00",
"code": "XY"
},
{
"amount": "3.80",
"code": "QV"
},
{
"amount": "48.20",
"code": "QX"
},
{
"amount": "3.83",
"code": "XA"
},
{
"amount": "6.97",
"code": "YC"
},
{
"amount": "9.00",
"code": "FR"
},
{
"amount": "4.50",
"code": "XF"
},
{
"amount": "46.00",
"code": "YQ"
},
{
"amount": "5.60",
"code": "AY"
},
{
"amount": "0.70",
"code": "OG"
},
{
"amount": "1175.00",
"code": "YR"
},
{
"amount": "15.80",
"code": "JD"
},
{
"amount": "44.40",
"code": "US"
}
],
"refundableTaxes": "100.90"
},
"fareDetailsBySegment": [
{
"segmentId": "1",
"cabin": "BUSINESS",
"fareBasis": "ZNX45NDL",
"brandedFare": "BIZSTAND",
"class": "Z",
"includedCheckedBags": {
"quantity": 2
}
},
{
"segmentId": "2",
"cabin": "BUSINESS",
"fareBasis": "ZNX45NDL",
"brandedFare": "BIZSTAND",
"class": "J",
"includedCheckedBags": {
"quantity": 2
}
},
{
"segmentId": "5",
"cabin": "ECONOMY",
"fareBasis": "RKX46NMZ",
"brandedFare": "STANDARD6",
"class": "L",
"includedCheckedBags": {
"quantity": 1
}
},
{
"segmentId": "6",
"cabin": "ECONOMY",
"fareBasis": "RKX46NMZ",
"brandedFare": "STANDARD6",
"class": "R",
"includedCheckedBags": {
"quantity": 1
}
}
]
},
{
"travelerId": "2",
"fareOption": "STANDARD",
"travelerType": "CHILD",
"price": {
"currency": "USD",
"total": "3575.80",
"base": "2205.00",
"taxes": [
{
"amount": "7.00",
"code": "XY"
},
{
"amount": "3.80",
"code": "QV"
},
{
"amount": "48.20",
"code": "QX"
},
{
"amount": "3.83",
"code": "XA"
},
{
"amount": "6.97",
"code": "YC"
},
{
"amount": "9.00",
"code": "FR"
},
{
"amount": "4.50",
"code": "XF"
},
{
"amount": "46.00",
"code": "YQ"
},
{
"amount": "5.60",
"code": "AY"
},
{
"amount": "0.70",
"code": "OG"
},
{
"amount": "1175.00",
"code": "YR"
},
{
"amount": "15.80",
"code": "JD"
},
{
"amount": "44.40",
"code": "US"
}
],
"refundableTaxes": "100.90"
},
"fareDetailsBySegment": [
{
"segmentId": "1",
"cabin": "BUSINESS",
"fareBasis": "ZNX45NDL",
"brandedFare": "BIZSTAND",
"class": "Z",
"includedCheckedBags": {
"quantity": 2
}
},
{
"segmentId": "2",
"cabin": "BUSINESS",
"fareBasis": "ZNX45NDL",
"brandedFare": "BIZSTAND",
"class": "J",
"includedCheckedBags": {
"quantity": 2
}
},
{
"segmentId": "5",
"cabin": "ECONOMY",
"fareBasis": "RKX46NMZ",
"brandedFare": "STANDARD6",
"class": "L",
"includedCheckedBags": {
"quantity": 1
}
},
{
"segmentId": "6",
"cabin": "ECONOMY",
"fareBasis": "RKX46NMZ",
"brandedFare": "STANDARD6",
"class": "R",
"includedCheckedBags": {
"quantity": 1
}
}
]
}
]
}
],
"travelers": [
{
"id": "1",
"dateOfBirth": "1982-01-16",
"name": {
"firstName": "JORGE",
"lastName": "GONZALES"
},
"gender": "MALE",
"contact": {
"emailAddress": "jorge.gonzales833@[Link]",
"phones": [
{
"deviceType": "MOBILE",
"countryCallingCode": "34",
"number": "480080076"
}
]
},
"documents": [
{
"documentType": "PASSPORT",
"birthPlace": "Madrid",
"issuanceLocation": "Madrid",
"issuanceDate": "2015-04-14",
"number": "00000000",
"expiryDate": "2025-04-14",
"issuanceCountry": "ES",
"validityCountry": "ES",
"nationality": "ES",
"holder": true
}
]
},
{
"id": "2",
"dateOfBirth": "2012-10-11",
"gender": "FEMALE",
"contact": {
"emailAddress": "jorge.gonzales833@[Link]",
"phones": [
{
"deviceType": "MOBILE",
"countryCallingCode": "34",
"number": "480080076"
}
]
},
"name": {
"firstName": "ADRIANA",
"lastName": "GONZALES"
}
}
],
"remarks": {
"general": [
{
"subType": "GENERAL_MISCELLANEOUS",
"text": "ONLINE BOOKING FROM INCREIBLE VIAJES"
}
]
},
"ticketingAgreement": {
"option": "DELAY_TO_CANCEL",
"delay": "6D"
},
"contacts": [
{
"addresseeName": {
"firstName": "PABLO",
"lastName": "RODRIGUEZ"
},
"companyName": "INCREIBLE VIAJES",
"purpose": "STANDARD",
"phones": [
{
"deviceType": "LANDLINE",
"countryCallingCode": "34",
"number": "480080071"
},
{
"deviceType": "MOBILE",
"countryCallingCode": "33",
"number": "480080072"
}
],
"emailAddress": "support@[Link]",
"address": {
"lines": [
"Calle Prado, 16"
],
"postalCode": "28014",
"cityName": "Madrid",
"countryCode": "ES"
}
}
]
}
});

let config = {
method: 'post',
maxBodyLength: Infinity,
url: '[Link]
headers: {
'Content-Type': 'application/json'
},
data : data
};

[Link](config)
.then((response) => {
[Link]([Link]([Link]));
})
.catch((error) => {
[Link](error);
});

201 CREATED

Response

Body
Headers (13)
View More

json
{
"data": {
"type": "flight-order",
"id": "eJzTd9cPDAgICfYAAAvRAoY%3D",
"queuingOfficeId": "NCE4D31SB",
"associatedRecords": [
{
"reference": "QPPTSH",
"creationDate": "2024-04-03T03:43:00.000",
"originSystemCode": "GDS",
"flightOfferId": "1"
}
],
"flightOffers": [
{
"type": "flight-offer",
"id": "1",
"source": "GDS",
"nonHomogeneous": false,
"lastTicketingDate": "2024-04-03",
"itineraries": [
{
"segments": [
{
"departure": {
"iataCode": "BOS",
"terminal": "E",
"at": "2024-04-17T17:20:00"
},
"arrival": {
"iataCode": "CDG",
"terminal": "2E",
"at": "2024-04-18T06:05:00"
},
"carrierCode": "AF",
"number": "333",
"aircraft": {
"code": "359"
},
"duration": "PT6H45M",
"id": "1",
"numberOfStops": 0,
"co2Emissions": [
{
"weight": 556,
"weightUnit": "KG",
"cabin": "BUSINESS"
}
]
},
{
"departure": {
"iataCode": "CDG",
"terminal": "2F",
"at": "2024-04-18T07:05:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "2",
"at": "2024-04-18T09:15:00"
},
"carrierCode": "AF",
"number": "1000",
"aircraft": {
"code": "319"
},
"duration": "PT2H10M",
"id": "2",
"numberOfStops": 0,
"co2Emissions": [
{
"weight": 105,
"weightUnit": "KG",
"cabin": "BUSINESS"
}
]
}
]
},
{
"segments": [
{
"departure": {
"iataCode": "MAD",
"terminal": "2",
"at": "2024-05-01T20:15:00"
},
"arrival": {
"iataCode": "CDG",
"terminal": "2F",
"at": "2024-05-01T22:20:00"
},
"carrierCode": "AF",
"number": "1101",
"aircraft": {
"code": "321"
},
"duration": "PT2H5M",
"id": "5",
"numberOfStops": 0,
"co2Emissions": [
{
"weight": 105,
"weightUnit": "KG",
"cabin": "ECONOMY"
}
]
},
{
"departure": {
"iataCode": "CDG",
"terminal": "2E",
"at": "2024-05-02T13:35:00"
},
"arrival": {
"iataCode": "BOS",
"terminal": "E",
"at": "2024-05-02T15:10:00"
},
"carrierCode": "AF",
"number": "334",
"aircraft": {
"code": "359"
},
"duration": "PT7H35M",
"id": "6",
"numberOfStops": 0,
"co2Emissions": [
{
"weight": 278,
"weightUnit": "KG",
"cabin": "ECONOMY"
}
]
}
]
}
],
"price": {
"currency": "USD",
"total": "7151.60",
"base": "4410.00",
"fees": [
{
"amount": "0.00",
"type": "TICKETING"
},
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "FORM_OF_PAYMENT"
}
],
"grandTotal": "7151.60",
"billingCurrency": "USD"
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": false
},
"validatingAirlineCodes": [
"AF"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "USD",
"total": "3575.80",
"base": "2205.00",
"taxes": [
{
"amount": "5.60",
"code": "AY"
},
{
"amount": "9.00",
"code": "FR"
},
{
"amount": "15.80",
"code": "JD"
},
{
"amount": "0.70",
"code": "OG"
},
{
"amount": "3.80",
"code": "QV"
},
{
"amount": "48.20",
"code": "QX"
},
{
"amount": "44.40",
"code": "US"
},
{
"amount": "3.83",
"code": "XA"
},
{
"amount": "4.50",
"code": "XF"
},
{
"amount": "7.00",
"code": "XY"
},
{
"amount": "6.97",
"code": "YC"
},
{
"amount": "46.00",
"code": "YQ"
},
{
"amount": "1175.00",
"code": "YR"
}
],
"refundableTaxes": "100.90"
},
"fareDetailsBySegment": [
{
"segmentId": "1",
"cabin": "BUSINESS",
"fareBasis": "ZNX45NDL",
"brandedFare": "BIZSTAND",
"class": "Z",
"includedCheckedBags": {
"quantity": 2
}
},
{
"segmentId": "2",
"cabin": "BUSINESS",
"fareBasis": "ZNX45NDL",
"brandedFare": "BIZSTAND",
"class": "J",
"includedCheckedBags": {
"quantity": 2
}
},
{
"segmentId": "5",
"cabin": "ECONOMY",
"fareBasis": "RKX46NMZ",
"brandedFare": "STANDARD6",
"class": "L",
"includedCheckedBags": {
"quantity": 1
}
},
{
"segmentId": "6",
"cabin": "ECONOMY",
"fareBasis": "RKX46NMZ",
"brandedFare": "STANDARD6",
"class": "R",
"includedCheckedBags": {
"quantity": 1
}
}
]
},
{
"travelerId": "2",
"fareOption": "STANDARD",
"travelerType": "CHILD",
"price": {
"currency": "USD",
"total": "3575.80",
"base": "2205.00",
"taxes": [
{
"amount": "5.60",
"code": "AY"
},
{
"amount": "9.00",
"code": "FR"
},
{
"amount": "15.80",
"code": "JD"
},
{
"amount": "0.70",
"code": "OG"
},
{
"amount": "3.80",
"code": "QV"
},
{
"amount": "48.20",
"code": "QX"
},
{
"amount": "44.40",
"code": "US"
},
{
"amount": "3.83",
"code": "XA"
},
{
"amount": "4.50",
"code": "XF"
},
{
"amount": "7.00",
"code": "XY"
},
{
"amount": "6.97",
"code": "YC"
},
{
"amount": "46.00",
"code": "YQ"
},
{
"amount": "1175.00",
"code": "YR"
}
],
"refundableTaxes": "100.90"
},
"fareDetailsBySegment": [
{
"segmentId": "1",
"cabin": "BUSINESS",
"fareBasis": "ZNX45NDL",
"brandedFare": "BIZSTAND",
"class": "Z",
"includedCheckedBags": {
"quantity": 2
}
},
{
"segmentId": "2",
"cabin": "BUSINESS",
"fareBasis": "ZNX45NDL",
"brandedFare": "BIZSTAND",
"class": "J",
"includedCheckedBags": {
"quantity": 2
}
},
{
"segmentId": "5",
"cabin": "ECONOMY",
"fareBasis": "RKX46NMZ",
"brandedFare": "STANDARD6",
"class": "L",
"includedCheckedBags": {
"quantity": 1
}
},
{
"segmentId": "6",
"cabin": "ECONOMY",
"fareBasis": "RKX46NMZ",
"brandedFare": "STANDARD6",
"class": "R",
"includedCheckedBags": {
"quantity": 1
}
}
]
}
]
}
],
"travelers": [
{
"id": "1",
"dateOfBirth": "1982-01-16",
"gender": "MALE",
"name": {
"firstName": "JORGE",
"lastName": "GONZALES"
},
"documents": [
{
"number": "00000000",
"issuanceDate": "2015-04-14",
"expiryDate": "2025-04-14",
"issuanceCountry": "ES",
"issuanceLocation": "Madrid",
"nationality": "ES",
"birthPlace": "Madrid",
"documentType": "PASSPORT",
"holder": true
}
],
"contact": {
"purpose": "STANDARD",
"phones": [
{
"deviceType": "MOBILE",
"countryCallingCode": "34",
"number": "480080076"
}
],
"emailAddress": "jorge.gonzales833@[Link]"
}
},
{
"id": "2",
"dateOfBirth": "2012-10-11",
"gender": "FEMALE",
"name": {
"firstName": "ADRIANA",
"lastName": "GONZALES"
},
"contact": {
"purpose": "STANDARD",
"phones": [
{
"deviceType": "MOBILE",
"countryCallingCode": "34",
"number": "480080076"
}
],
"emailAddress": "jorge.gonzales833@[Link]"
}
}
],
"remarks": {
"general": [
{
"subType": "GENERAL_MISCELLANEOUS",
"text": "ONLINE BOOKING FROM INCREIBLE VIAJES"
}
]
},
"ticketingAgreement": {
"option": "DELAY_TO_CANCEL",
"delay": "6D"
},
"automatedProcess": [
{
"code": "IMMEDIATE",
"queue": {
"number": "0",
"category": "0"
},
"officeId": "NCE4D31SB"
}
],
"contacts": [
{
"addresseeName": {
"firstName": "PABLO RODRIGUEZ"
},
"address": {
"lines": [
"Calle Prado, 16"
],
"postalCode": "28014",
"countryCode": "ES",
"cityName": "Madrid"
},
"purpose": "STANDARD",
"phones": [
{
"deviceType": "LANDLINE",
"countryCallingCode": "34",
"number": "480080071"
},
{
"deviceType": "MOBILE",
"countryCallingCode": "33",
"number": "480080072"
}
],
"companyName": "INCREIBLE VIAJES",
"emailAddress": "support@[Link]"
}
]
},
"dictionaries": {
"locations": {
"MAD": {
"cityCode": "MAD",
"countryCode": "ES"
},
"CDG": {
"cityCode": "PAR",
"countryCode": "FR"
},
"BOS": {
"cityCode": "BOS",
"countryCode": "US"
}
}
}

GETFlight Order Management


Open request
[Link]
The Flight Order Management REST JSON API is an open API that allows you to manipulate a flight
order previously created.

AuthorizationBearer Token
This request is using an authorization helper from folder Flights

Example

Flight Order Management

Request

View More

NodeJs - Axios

const axios = require('axios');


let config = {
method: 'get',
maxBodyLength: Infinity,
url: '[Link]
%3D',
headers: { }
};

[Link](config)
.then((response) => {
[Link]([Link]([Link]));
})
.catch((error) => {
[Link](error);
});

200 OK

Response

Body
Headers (13)

View More

json
{
"meta": {
"count": 1,
"links": {
"self":
"[Link]
}
},
"data": {
"type": "flight-order",
"id": "eJzTd9cPDAgICfYAAAvRAoY%3D",
"queuingOfficeId": "NCE4D31SB",
"associatedRecords": [
{
"reference": "QPPTSH",
"originSystemCode": "AF",
"flightOfferId": "1"
},
{
"reference": "QPPTSH",
"creationDate": "2024-04-03T03:43:00",
"originSystemCode": "GDS",
"flightOfferId": "1"
}
],
"flightOffers": [
{
"type": "flight-offer",
"id": "1",
"source": "GDS",
"nonHomogeneous": false,
"lastTicketingDate": "2024-04-03",
"itineraries": [
{
"segments": [
{
"departure": {
"iataCode": "BOS",
"terminal": "E",
"at": "2024-04-17T17:20:00"
},
"arrival": {
"iataCode": "CDG",
"terminal": "2E",
"at": "2024-04-18T06:05:00"
},
"carrierCode": "AF",
"number": "333",
"aircraft": {
"code": "359"
},
"duration": "PT6H45M",
"bookingStatus": "CONFIRMED",
"segmentType": "ACTIVE",
"isFlown": false,
"id": "1",
"numberOfStops": 0,
"co2Emissions": [
{
"weight": 556,
"weightUnit": "KG",
"cabin": "BUSINESS"
}
]
},
{
"departure": {
"iataCode": "CDG",
"terminal": "2F",
"at": "2024-04-18T07:05:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "2",
"at": "2024-04-18T09:15:00"
},
"carrierCode": "AF",
"number": "1000",
"aircraft": {
"code": "319"
},
"duration": "PT2H10M",
"bookingStatus": "CONFIRMED",
"segmentType": "ACTIVE",
"isFlown": false,
"id": "2",
"numberOfStops": 0,
"co2Emissions": [
{
"weight": 105,
"weightUnit": "KG",
"cabin": "BUSINESS"
}
]
}
]
},
{
"segments": [
{
"departure": {
"iataCode": "MAD",
"terminal": "2",
"at": "2024-05-01T20:15:00"
},
"arrival": {
"iataCode": "CDG",
"terminal": "2F",
"at": "2024-05-01T22:20:00"
},
"carrierCode": "AF",
"number": "1101",
"aircraft": {
"code": "321"
},
"duration": "PT2H5M",
"bookingStatus": "CONFIRMED",
"segmentType": "ACTIVE",
"isFlown": false,
"id": "3",
"numberOfStops": 0,
"co2Emissions": [
{
"weight": 105,
"weightUnit": "KG",
"cabin": "ECONOMY"
}
]
},
{
"departure": {
"iataCode": "CDG",
"terminal": "2E",
"at": "2024-05-02T13:35:00"
},
"arrival": {
"iataCode": "BOS",
"terminal": "E",
"at": "2024-05-02T15:10:00"
},
"carrierCode": "AF",
"number": "334",
"aircraft": {
"code": "359"
},
"duration": "PT7H35M",
"bookingStatus": "CONFIRMED",
"segmentType": "ACTIVE",
"isFlown": false,
"id": "4",
"numberOfStops": 0,
"co2Emissions": [
{
"weight": 278,
"weightUnit": "KG",
"cabin": "ECONOMY"
}
]
}
]
}
],
"price": {
"currency": "USD",
"total": "7151.60",
"base": "4410.00",
"grandTotal": "7151.60"
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
]
},
"validatingAirlineCodes": [
"AF"
],
"travelerPricings": [
{
"travelerId": "1",
"travelerType": "CHILD",
"price": {
"currency": "USD",
"total": "3575.80",
"base": "2205.00",
"taxes": [
{
"amount": "5.60",
"code": "AY"
},
{
"amount": "9.00",
"code": "FR"
},
{
"amount": "15.80",
"code": "JD"
},
{
"amount": "0.70",
"code": "OG"
},
{
"amount": "3.80",
"code": "QV"
},
{
"amount": "48.20",
"code": "QX"
},
{
"amount": "44.40",
"code": "US"
},
{
"amount": "3.83",
"code": "XA"
},
{
"amount": "4.50",
"code": "XF"
},
{
"amount": "7.00",
"code": "XY"
},
{
"amount": "6.97",
"code": "YC"
},
{
"amount": "46.00",
"code": "YQ"
},
{
"amount": "1175.00",
"code": "YR"
}
]
},
"fareDetailsBySegment": [
{
"segmentId": "1",
"cabin": "BUSINESS",
"fareBasis": "ZNX45NDL",
"class": "Z",
"includedCheckedBags": {
"quantity": 2
}
},
{
"segmentId": "2",
"cabin": "BUSINESS",
"fareBasis": "ZNX45NDL",
"class": "J",
"includedCheckedBags": {
"quantity": 2
},
"mealServices": [
{
"label": "Breakfast"
}
]
},
{
"segmentId": "3",
"cabin": "ECONOMY",
"fareBasis": "RKX46NMZ",
"class": "L",
"includedCheckedBags": {
"quantity": 1
},
"mealServices": [
{
"label": "Snack"
}
]
},
{
"segmentId": "4",
"cabin": "ECONOMY",
"fareBasis": "RKX46NMZ",
"class": "R",
"includedCheckedBags": {
"quantity": 1
}
}
]
},
{
"travelerId": "2",
"travelerType": "ADULT",
"price": {
"currency": "USD",
"total": "3575.80",
"base": "2205.00",
"taxes": [
{
"amount": "5.60",
"code": "AY"
},
{
"amount": "9.00",
"code": "FR"
},
{
"amount": "15.80",
"code": "JD"
},
{
"amount": "0.70",
"code": "OG"
},
{
"amount": "3.80",
"code": "QV"
},
{
"amount": "48.20",
"code": "QX"
},
{
"amount": "44.40",
"code": "US"
},
{
"amount": "3.83",
"code": "XA"
},
{
"amount": "4.50",
"code": "XF"
},
{
"amount": "7.00",
"code": "XY"
},
{
"amount": "6.97",
"code": "YC"
},
{
"amount": "46.00",
"code": "YQ"
},
{
"amount": "1175.00",
"code": "YR"
}
]
},
"fareDetailsBySegment": [
{
"segmentId": "1",
"cabin": "BUSINESS",
"fareBasis": "ZNX45NDL",
"class": "Z",
"includedCheckedBags": {
"quantity": 2
}
},
{
"segmentId": "2",
"cabin": "BUSINESS",
"fareBasis": "ZNX45NDL",
"class": "J",
"includedCheckedBags": {
"quantity": 2
},
"mealServices": [
{
"label": "Breakfast"
}
]
},
{
"segmentId": "3",
"cabin": "ECONOMY",
"fareBasis": "RKX46NMZ",
"class": "L",
"includedCheckedBags": {
"quantity": 1
},
"mealServices": [
{
"label": "Snack"
}
]
},
{
"segmentId": "4",
"cabin": "ECONOMY",
"fareBasis": "RKX46NMZ",
"class": "R",
"includedCheckedBags": {
"quantity": 1
}
}
]
}
]
}
],
"travelers": [
{
"id": "1",
"name": {
"firstName": "ADRIANA",
"lastName": "GONZALES"
},
"contact": {
"purpose": "STANDARD",
"phones": [
{
"deviceType": "MOBILE",
"countryCallingCode": "34",
"number": "480080076"
}
],
"emailAddress": "JORGE.GONZALES833@[Link]"
}
},
{
"id": "2",
"gender": "MALE",
"name": {
"firstName": "JORGE",
"lastName": "GONZALES"
},
"documents": [
{
"number": "00000000",
"expiryDate": "2025-04-14",
"issuanceCountry": "ES",
"nationality": "ES",
"documentType": "PASSPORT",
"holder": true
}
],
"contact": {
"purpose": "STANDARD",
"phones": [
{
"deviceType": "MOBILE",
"countryCallingCode": "34",
"number": "480080076"
}
],
"emailAddress": "JORGE.GONZALES833@[Link]"
}
}
],
"remarks": {
"general": [
{
"subType": "GENERAL_MISCELLANEOUS",
"text": "ONLINE BOOKING FROM INCREIBLE VIAJES",
"flightOfferIds": [
"1"
]
},
{
"subType": "GENERAL_MISCELLANEOUS",
"text": "PRICING ENTRY FXP/FF1,2-BIZSTAND/FF3,4-STANDARD6/R,P,VC-
AF,FC-USD/P1-2",
"flightOfferIds": [
"1"
]
}
],
"airline": [
{
"subType": "ADVANCED_TICKET_TIME_LIMIT",
"airlineCode": "AF",
"text": "TO AF BY 06APR 0500 NCE OTHERWISE WILL BE XLD",
"flightOfferIds": [
"1"
]
}
]
},
"ticketingAgreement": {
"option": "DELAY_TO_CANCEL",
"dateTime": "2024-04-09"
},
"contacts": [
{
"addresseeName": {
"firstName": "PABLO RODRIGUEZ"
},
"address": {
"lines": [
"CALLE PRADO, 16"
],
"postalCode": "28014",
"countryCode": "ES",
"cityName": "MADRID"
},
"purpose": "STANDARD",
"phones": [
{
"deviceType": "LANDLINE",
"countryCallingCode": "34",
"number": "480080071"
},
{
"deviceType": "MOBILE",
"countryCallingCode": "33",
"number": "480080072"
}
],
"companyName": "INCREIBLE VIAJES",
"emailAddress": "SUPPORT@[Link]"
}
]
},
"dictionaries": {
"locations": {
"MAD": {
"cityCode": "MAD",
"countryCode": "ES"
},
"BOS": {
"cityCode": "BOS",
"countryCode": "US"
},
"CDG": {
"cityCode": "PAR",
"countryCode": "FR"
}
}
}

DELETEFlight Order Management


Open request
[Link]
The Flight Order Management REST JSON API is an open API that allows you to manipulate a flight
order previously created.

AuthorizationBearer Token
This request is using an authorization helper from folder Flights

GETSeatmap Display
Open request
[Link]
The Seatmap Display REST/JSON API is an open API that allows you to retrieve the seat map of one
or several flights.

AuthorizationBearer Token
This request is using an authorization helper from folder Flights

Query Params
flight-orderId

POSTSeatmap Display
Open request
[Link]
The Seatmap Display REST/JSON API is an open API that allows you to retrieve the seat map of one
or several flights.

AuthorizationBearer Token
This request is using an authorization helper from folder Flights

Request Headers
X-HTTP-Method-Override
GET

Bodyraw (json)
json
{
"data": [

POSTBranded Fares Upsell


Open request
[Link]
Branded fares, or fare families, are airline-created fares that combine different products and services
like bags, sets, meals, free cancellation or miles accrual. The Amadeus Branded Fare Upsell API
provides the branded fares available for a given flight, along with pricing and a fare description. This
enables you to increase booking revenue by recommending higher-value fares during the shopping
phase.

The Branded Fares Upsell API is easily integrated into the Amadeus REST/JSON flight booking engine
and provides branded fare options for flights returned by the Flight Offers Search API.
AuthorizationBearer Token
This request is using an authorization helper from folder Flights

Request Headers
X-HTTP-Method-Override
GET

Bodyraw (json)
View More

json
{
"data": {
"type": "flight-offers-upselling",
"flightOffers": [

],
"payments": [
{
"brand": "VISA_IXARIS",
"binNumber": 123456,
"flightOfferIds": [
1
]
}
]
}

GETFlight Price Analysis


Open request
[Link]
originIataCode=MAD&destinationIataCode=CDG&departureDate=2022-11-
21&currencyCode=EUR&oneWay=false
When booking a flight, travelers need to be confident that they're getting a good deal. The Flight Price
Analysis API uses an Artificial Intelligence algorithm trained on Amadeus historical flight booking
data to show how current flight prices compare to historical fares and whether the price of a flight is
below or above average.

For a given city pair and departure date, the API provides historical prices in a quartile distribution,
including minimum, maximum and average price.
AuthorizationBearer Token
This request is using an authorization helper from folder Flights

Query Params
originIataCode
MAD
destinationIataCode
CDG
departureDate
2022-11-21
currencyCode
EUR
oneWay
false

POSTFlight Choice Prediction


Open request
[Link]
The Flight Choice Prediction API allows developers to forecast traveler choices in the context of
search & shopping. Exposing machine learning & AI services for travel, this API consumes the output
of the Flight Low-fare Search API and returns augmented content with probabilities of choices for
each flight offers.

AuthorizationBearer Token
This request is using an authorization helper from folder Flights

Request Headers
X-HTTP-Method-Override
GET

Bodyraw (json)
View More

json
{
"meta": {
"count": 49,
"links": {
"self": "[Link]
originLocationCode=ATH&destinationLocationCode=MAD&adults=1&departureDate=2021-11-20"
}
},
"data": [
{
"type": "flight-offer",
"id": "1",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2021-06-10",
"numberOfBookableSeats": 9,
"itineraries": [
{
"duration": "PT4H5M",
"segments": [
{
"departure": {
"iataCode": "ATH",
"at": "2021-11-20T19:55:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "4",
"at": "2021-11-20T23:00:00"
},
"carrierCode": "IB",
"number": "3281",
"aircraft": {
"code": "320"
},
"operating": {
"carrierCode": "IB"
},
"duration": "PT4H5M",
"id": "7",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "82.69",
"base": "53.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "82.69",
"additionalServices": [
{
"amount": "25.00",
"type": "CHECKED_BAGS"
}
]
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": false
},
"validatingAirlineCodes": [
"IB"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "82.69",
"base": "53.00"
},
"fareDetailsBySegment": [
{
"segmentId": "7",
"cabin": "ECONOMY",
"fareBasis": "ADLNAOB4",
"brandedFare": "NOBAG",
"class": "A",
"includedCheckedBags": {
"quantity": 0
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "2",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2021-06-10",
"numberOfBookableSeats": 9,
"itineraries": [
{
"duration": "PT9H20M",
"segments": [
{
"departure": {
"iataCode": "ATH",
"at": "2021-11-20T05:30:00"
},
"arrival": {
"iataCode": "IST",
"at": "2021-11-20T07:55:00"
},
"carrierCode": "TK",
"number": "1842",
"aircraft": {
"code": "321"
},
"operating": {
"carrierCode": "TK"
},
"duration": "PT1H25M",
"id": "36",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "IST",
"at": "2021-11-20T11:20:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "1",
"at": "2021-11-20T13:50:00"
},
"carrierCode": "TK",
"number": "1357",
"aircraft": {
"code": "321"
},
"operating": {
"carrierCode": "TK"
},
"duration": "PT4H30M",
"id": "37",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "136.99",
"base": "2.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "136.99"
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": true
},
"validatingAirlineCodes": [
"TK"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "136.99",
"base": "2.00"
},
"fareDetailsBySegment": [
{
"segmentId": "36",
"cabin": "ECONOMY",
"fareBasis": "WN2PROW",
"class": "W",
"includedCheckedBags": {
"weight": 20,
"weightUnit": "KG"
}
},
{
"segmentId": "37",
"cabin": "ECONOMY",
"fareBasis": "WN2PROW",
"class": "W",
"includedCheckedBags": {
"weight": 20,
"weightUnit": "KG"
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "3",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2021-06-10",
"numberOfBookableSeats": 9,
"itineraries": [
{
"duration": "PT17H15M",
"segments": [
{
"departure": {
"iataCode": "ATH",
"at": "2021-11-20T21:35:00"
},
"arrival": {
"iataCode": "IST",
"at": "2021-11-21T00:10:00"
},
"carrierCode": "TK",
"number": "1844",
"aircraft": {
"code": "77W"
},
"operating": {
"carrierCode": "TK"
},
"duration": "PT1H35M",
"id": "28",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "IST",
"at": "2021-11-21T11:20:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "1",
"at": "2021-11-21T13:50:00"
},
"carrierCode": "TK",
"number": "1357",
"aircraft": {
"code": "321"
},
"operating": {
"carrierCode": "TK"
},
"duration": "PT4H30M",
"id": "29",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "136.99",
"base": "2.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "136.99"
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": true
},
"validatingAirlineCodes": [
"TK"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "136.99",
"base": "2.00"
},
"fareDetailsBySegment": [
{
"segmentId": "28",
"cabin": "ECONOMY",
"fareBasis": "WN2PROW",
"class": "W",
"includedCheckedBags": {
"weight": 20,
"weightUnit": "KG"
}
},
{
"segmentId": "29",
"cabin": "ECONOMY",
"fareBasis": "WN2PROW",
"class": "W",
"includedCheckedBags": {
"weight": 20,
"weightUnit": "KG"
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "4",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2021-06-10",
"numberOfBookableSeats": 9,
"itineraries": [
{
"duration": "PT24H5M",
"segments": [
{
"departure": {
"iataCode": "ATH",
"at": "2021-11-20T14:45:00"
},
"arrival": {
"iataCode": "IST",
"at": "2021-11-20T17:15:00"
},
"carrierCode": "TK",
"number": "1850",
"aircraft": {
"code": "321"
},
"operating": {
"carrierCode": "TK"
},
"duration": "PT1H30M",
"id": "14",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "IST",
"at": "2021-11-21T11:20:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "1",
"at": "2021-11-21T13:50:00"
},
"carrierCode": "TK",
"number": "1357",
"aircraft": {
"code": "321"
},
"operating": {
"carrierCode": "TK"
},
"duration": "PT4H30M",
"id": "15",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "136.99",
"base": "2.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "136.99"
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": true
},
"validatingAirlineCodes": [
"TK"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "136.99",
"base": "2.00"
},
"fareDetailsBySegment": [
{
"segmentId": "14",
"cabin": "ECONOMY",
"fareBasis": "WN2PROW",
"class": "W",
"includedCheckedBags": {
"weight": 20,
"weightUnit": "KG"
}
},
{
"segmentId": "15",
"cabin": "ECONOMY",
"fareBasis": "WN2PROW",
"class": "W",
"includedCheckedBags": {
"weight": 20,
"weightUnit": "KG"
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "5",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2021-11-10",
"numberOfBookableSeats": 9,
"itineraries": [
{
"duration": "PT17H55M",
"segments": [
{
"departure": {
"iataCode": "ATH",
"at": "2021-11-20T17:20:00"
},
"arrival": {
"iataCode": "AMS",
"at": "2021-11-20T20:00:00"
},
"carrierCode": "KL",
"number": "1576",
"aircraft": {
"code": "73H"
},
"operating": {
"carrierCode": "KL"
},
"duration": "PT3H40M",
"id": "88",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "AMS",
"at": "2021-11-21T07:40:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "1",
"at": "2021-11-21T10:15:00"
},
"carrierCode": "KL",
"number": "1699",
"aircraft": {
"code": "73W"
},
"operating": {
"carrierCode": "KL"
},
"duration": "PT2H35M",
"id": "89",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "142.24",
"base": "85.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "142.24",
"additionalServices": [
{
"amount": "30.00",
"type": "CHECKED_BAGS"
}
]
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": false
},
"validatingAirlineCodes": [
"AF"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "142.24",
"base": "85.00"
},
"fareDetailsBySegment": [
{
"segmentId": "88",
"cabin": "ECONOMY",
"fareBasis": "TS55BALG",
"class": "T",
"includedCheckedBags": {
"quantity": 0
}
},
{
"segmentId": "89",
"cabin": "ECONOMY",
"fareBasis": "TS55BALG",
"brandedFare": "LIGHT1",
"class": "T",
"includedCheckedBags": {
"quantity": 0
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "6",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2021-11-10",
"numberOfBookableSeats": 9,
"itineraries": [
{
"duration": "PT19H55M",
"segments": [
{
"departure": {
"iataCode": "ATH",
"at": "2021-11-20T17:20:00"
},
"arrival": {
"iataCode": "AMS",
"at": "2021-11-20T20:00:00"
},
"carrierCode": "KL",
"number": "1576",
"aircraft": {
"code": "73H"
},
"operating": {
"carrierCode": "KL"
},
"duration": "PT3H40M",
"id": "92",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "AMS",
"at": "2021-11-21T09:45:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "1",
"at": "2021-11-21T12:15:00"
},
"carrierCode": "KL",
"number": "1701",
"aircraft": {
"code": "73H"
},
"operating": {
"carrierCode": "KL"
},
"duration": "PT2H30M",
"id": "93",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "142.24",
"base": "85.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "142.24",
"additionalServices": [
{
"amount": "30.00",
"type": "CHECKED_BAGS"
}
]
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": false
},
"validatingAirlineCodes": [
"AF"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "142.24",
"base": "85.00"
},
"fareDetailsBySegment": [
{
"segmentId": "92",
"cabin": "ECONOMY",
"fareBasis": "TS55BALG",
"class": "T",
"includedCheckedBags": {
"quantity": 0
}
},
{
"segmentId": "93",
"cabin": "ECONOMY",
"fareBasis": "TS55BALG",
"brandedFare": "LIGHT1",
"class": "T",
"includedCheckedBags": {
"quantity": 0
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "7",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2021-06-10",
"numberOfBookableSeats": 9,
"itineraries": [
{
"duration": "PT17H20M",
"segments": [
{
"departure": {
"iataCode": "ATH",
"at": "2021-11-20T18:55:00"
},
"arrival": {
"iataCode": "OTP",
"at": "2021-11-20T20:30:00"
},
"carrierCode": "RO",
"number": "274",
"aircraft": {
"code": "73W"
},
"operating": {
"carrierCode": "RO"
},
"duration": "PT1H35M",
"id": "40",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "OTP",
"at": "2021-11-21T08:10:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "1",
"at": "2021-11-21T11:15:00"
},
"carrierCode": "RO",
"number": "415",
"aircraft": {
"code": "73H"
},
"operating": {
"carrierCode": "RO"
},
"duration": "PT4H5M",
"id": "41",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "151.99",
"base": "99.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "151.99",
"additionalServices": [
{
"amount": "45.00",
"type": "CHECKED_BAGS"
}
]
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": true
},
"validatingAirlineCodes": [
"RO"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "151.99",
"base": "99.00"
},
"fareDetailsBySegment": [
{
"segmentId": "40",
"cabin": "ECONOMY",
"fareBasis": "VOWSVRGR",
"class": "V",
"includedCheckedBags": {
"quantity": 1
}
},
{
"segmentId": "41",
"cabin": "ECONOMY",
"fareBasis": "EOWSVRES",
"class": "E",
"includedCheckedBags": {
"quantity": 1
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "8",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2021-11-15",
"numberOfBookableSeats": 9,
"itineraries": [
{
"duration": "PT23H45M",
"segments": [
{
"departure": {
"iataCode": "ATH",
"at": "2021-11-20T17:20:00"
},
"arrival": {
"iataCode": "AMS",
"at": "2021-11-20T20:00:00"
},
"carrierCode": "KL",
"number": "1576",
"aircraft": {
"code": "73H"
},
"operating": {
"carrierCode": "KL"
},
"duration": "PT3H40M",
"id": "80",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "AMS",
"at": "2021-11-21T13:30:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "1",
"at": "2021-11-21T16:05:00"
},
"carrierCode": "KL",
"number": "1703",
"aircraft": {
"code": "73H"
},
"operating": {
"carrierCode": "KL"
},
"duration": "PT2H35M",
"id": "81",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "159.24",
"base": "102.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "159.24",
"additionalServices": [
{
"amount": "30.00",
"type": "CHECKED_BAGS"
}
]
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": false
},
"validatingAirlineCodes": [
"AF"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "159.24",
"base": "102.00"
},
"fareDetailsBySegment": [
{
"segmentId": "80",
"cabin": "ECONOMY",
"fareBasis": "LS54BALG",
"class": "L",
"includedCheckedBags": {
"quantity": 0
}
},
{
"segmentId": "81",
"cabin": "ECONOMY",
"fareBasis": "LS54BALG",
"brandedFare": "LIGHT1",
"class": "L",
"includedCheckedBags": {
"quantity": 0
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "9",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2021-11-15",
"numberOfBookableSeats": 6,
"itineraries": [
{
"duration": "PT27H15M",
"segments": [
{
"departure": {
"iataCode": "ATH",
"at": "2021-11-20T17:20:00"
},
"arrival": {
"iataCode": "AMS",
"at": "2021-11-20T20:00:00"
},
"carrierCode": "KL",
"number": "1576",
"aircraft": {
"code": "73H"
},
"operating": {
"carrierCode": "KL"
},
"duration": "PT3H40M",
"id": "34",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "AMS",
"at": "2021-11-21T17:05:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "1",
"at": "2021-11-21T19:35:00"
},
"carrierCode": "KL",
"number": "1705",
"aircraft": {
"code": "73J"
},
"operating": {
"carrierCode": "KL"
},
"duration": "PT2H30M",
"id": "35",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "159.24",
"base": "102.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "159.24",
"additionalServices": [
{
"amount": "30.00",
"type": "CHECKED_BAGS"
}
]
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": false
},
"validatingAirlineCodes": [
"AF"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "159.24",
"base": "102.00"
},
"fareDetailsBySegment": [
{
"segmentId": "34",
"cabin": "ECONOMY",
"fareBasis": "LS54BALG",
"class": "L",
"includedCheckedBags": {
"quantity": 0
}
},
{
"segmentId": "35",
"cabin": "ECONOMY",
"fareBasis": "LS54BALG",
"brandedFare": "LIGHT1",
"class": "L",
"includedCheckedBags": {
"quantity": 0
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "10",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2021-11-20",
"numberOfBookableSeats": 9,
"itineraries": [
{
"duration": "PT12H15M",
"segments": [
{
"departure": {
"iataCode": "ATH",
"at": "2021-11-20T06:10:00"
},
"arrival": {
"iataCode": "CDG",
"terminal": "2F",
"at": "2021-11-20T08:50:00"
},
"carrierCode": "AF",
"number": "1033",
"aircraft": {
"code": "320"
},
"operating": {
"carrierCode": "AF"
},
"duration": "PT3H40M",
"id": "24",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "ORY",
"terminal": "3",
"at": "2021-11-20T15:35:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "2",
"at": "2021-11-20T17:25:00"
},
"carrierCode": "AF",
"number": "9432",
"aircraft": {
"code": "318"
},
"operating": {
"carrierCode": "AF"
},
"duration": "PT1H50M",
"id": "25",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "189.84",
"base": "136.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "189.84",
"additionalServices": [
{
"amount": "30.00",
"type": "CHECKED_BAGS"
}
]
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": false
},
"validatingAirlineCodes": [
"AF"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "189.84",
"base": "136.00"
},
"fareDetailsBySegment": [
{
"segmentId": "24",
"cabin": "ECONOMY",
"fareBasis": "QS50BALG",
"class": "Q",
"includedCheckedBags": {
"quantity": 0
}
},
{
"segmentId": "25",
"cabin": "ECONOMY",
"fareBasis": "QS50BALG",
"brandedFare": "LIGHT1",
"class": "Q",
"includedCheckedBags": {
"quantity": 0
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "11",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2021-11-20",
"numberOfBookableSeats": 9,
"itineraries": [
{
"duration": "PT27H45M",
"segments": [
{
"departure": {
"iataCode": "ATH",
"at": "2021-11-20T06:10:00"
},
"arrival": {
"iataCode": "CDG",
"terminal": "2F",
"at": "2021-11-20T08:50:00"
},
"carrierCode": "AF",
"number": "1033",
"aircraft": {
"code": "320"
},
"operating": {
"carrierCode": "AF"
},
"duration": "PT3H40M",
"id": "82",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "ORY",
"terminal": "3",
"at": "2021-11-21T07:00:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "2",
"at": "2021-11-21T08:55:00"
},
"carrierCode": "AF",
"number": "9430",
"aircraft": {
"code": "318"
},
"operating": {
"carrierCode": "AF"
},
"duration": "PT1H55M",
"id": "83",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "194.32",
"base": "136.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "194.32",
"additionalServices": [
{
"amount": "30.00",
"type": "CHECKED_BAGS"
}
]
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": false
},
"validatingAirlineCodes": [
"AF"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "194.32",
"base": "136.00"
},
"fareDetailsBySegment": [
{
"segmentId": "82",
"cabin": "ECONOMY",
"fareBasis": "QS50BALG",
"class": "Q",
"includedCheckedBags": {
"quantity": 0
}
},
{
"segmentId": "83",
"cabin": "ECONOMY",
"fareBasis": "QS50BALG",
"brandedFare": "LIGHT1",
"class": "Q",
"includedCheckedBags": {
"quantity": 0
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "12",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2021-11-20",
"numberOfBookableSeats": 1,
"itineraries": [
{
"duration": "PT19H30M",
"segments": [
{
"departure": {
"iataCode": "ATH",
"at": "2021-11-20T14:25:00"
},
"arrival": {
"iataCode": "CDG",
"terminal": "2F",
"at": "2021-11-20T17:00:00"
},
"carrierCode": "AF",
"number": "1533",
"aircraft": {
"code": "320"
},
"operating": {
"carrierCode": "AF"
},
"duration": "PT3H35M",
"id": "56",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "ORY",
"terminal": "3",
"at": "2021-11-21T07:00:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "2",
"at": "2021-11-21T08:55:00"
},
"carrierCode": "AF",
"number": "9430",
"aircraft": {
"code": "318"
},
"operating": {
"carrierCode": "AF"
},
"duration": "PT1H55M",
"id": "57",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "210.32",
"base": "152.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "210.32",
"additionalServices": [
{
"amount": "30.00",
"type": "CHECKED_BAGS"
}
]
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": false
},
"validatingAirlineCodes": [
"AF"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "210.32",
"base": "152.00"
},
"fareDetailsBySegment": [
{
"segmentId": "56",
"cabin": "ECONOMY",
"fareBasis": "HS50BALG",
"class": "H",
"includedCheckedBags": {
"quantity": 0
}
},
{
"segmentId": "57",
"cabin": "ECONOMY",
"fareBasis": "HS50BALG",
"brandedFare": "LIGHT1",
"class": "H",
"includedCheckedBags": {
"quantity": 0
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "13",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2021-11-20",
"numberOfBookableSeats": 9,
"itineraries": [
{
"duration": "PT9H25M",
"segments": [
{
"departure": {
"iataCode": "ATH",
"at": "2021-11-20T06:10:00"
},
"arrival": {
"iataCode": "CDG",
"terminal": "2F",
"at": "2021-11-20T08:50:00"
},
"carrierCode": "AF",
"number": "1033",
"aircraft": {
"code": "320"
},
"operating": {
"carrierCode": "AF"
},
"duration": "PT3H40M",
"id": "42",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "CDG",
"terminal": "2F",
"at": "2021-11-20T12:25:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "2",
"at": "2021-11-20T14:35:00"
},
"carrierCode": "AF",
"number": "1600",
"aircraft": {
"code": "320"
},
"operating": {
"carrierCode": "AF"
},
"duration": "PT2H10M",
"id": "43",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "265.23",
"base": "207.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "265.23",
"additionalServices": [
{
"amount": "30.00",
"type": "CHECKED_BAGS"
}
]
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": false
},
"validatingAirlineCodes": [
"AF"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "265.23",
"base": "207.00"
},
"fareDetailsBySegment": [
{
"segmentId": "42",
"cabin": "ECONOMY",
"fareBasis": "SS50BALG",
"class": "S",
"includedCheckedBags": {
"quantity": 0
}
},
{
"segmentId": "43",
"cabin": "ECONOMY",
"fareBasis": "SS50BALG",
"brandedFare": "LIGHT1",
"class": "S",
"includedCheckedBags": {
"quantity": 0
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "14",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2021-11-20",
"numberOfBookableSeats": 9,
"itineraries": [
{
"duration": "PT14H5M",
"segments": [
{
"departure": {
"iataCode": "ATH",
"at": "2021-11-20T06:10:00"
},
"arrival": {
"iataCode": "CDG",
"terminal": "2F",
"at": "2021-11-20T08:50:00"
},
"carrierCode": "AF",
"number": "1033",
"aircraft": {
"code": "320"
},
"operating": {
"carrierCode": "AF"
},
"duration": "PT3H40M",
"id": "10",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "CDG",
"terminal": "2F",
"at": "2021-11-20T17:05:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "2",
"at": "2021-11-20T19:15:00"
},
"carrierCode": "AF",
"number": "1100",
"aircraft": {
"code": "319"
},
"operating": {
"carrierCode": "AF"
},
"duration": "PT2H10M",
"id": "11",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "265.23",
"base": "207.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "265.23",
"additionalServices": [
{
"amount": "30.00",
"type": "CHECKED_BAGS"
}
]
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": false
},
"validatingAirlineCodes": [
"AF"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "265.23",
"base": "207.00"
},
"fareDetailsBySegment": [
{
"segmentId": "10",
"cabin": "ECONOMY",
"fareBasis": "SS50BALG",
"class": "S",
"includedCheckedBags": {
"quantity": 0
}
},
{
"segmentId": "11",
"cabin": "ECONOMY",
"fareBasis": "SS50BALG",
"brandedFare": "LIGHT1",
"class": "S",
"includedCheckedBags": {
"quantity": 0
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "15",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2021-11-20",
"numberOfBookableSeats": 1,
"itineraries": [
{
"duration": "PT12H15M",
"segments": [
{
"departure": {
"iataCode": "ATH",
"at": "2021-11-20T06:10:00"
},
"arrival": {
"iataCode": "CDG",
"terminal": "2F",
"at": "2021-11-20T08:50:00"
},
"carrierCode": "AF",
"number": "1033",
"aircraft": {
"code": "320"
},
"operating": {
"carrierCode": "AF"
},
"duration": "PT3H40M",
"id": "26",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "CDG",
"terminal": "2F",
"at": "2021-11-20T15:20:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "2",
"at": "2021-11-20T17:25:00"
},
"carrierCode": "AF",
"number": "1800",
"aircraft": {
"code": "318"
},
"operating": {
"carrierCode": "AF"
},
"duration": "PT2H5M",
"id": "27",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "265.23",
"base": "207.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "265.23",
"additionalServices": [
{
"amount": "30.00",
"type": "CHECKED_BAGS"
}
]
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": false
},
"validatingAirlineCodes": [
"AF"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "265.23",
"base": "207.00"
},
"fareDetailsBySegment": [
{
"segmentId": "26",
"cabin": "ECONOMY",
"fareBasis": "SS50BALG",
"class": "S",
"includedCheckedBags": {
"quantity": 0
}
},
{
"segmentId": "27",
"cabin": "ECONOMY",
"fareBasis": "SS50BALG",
"brandedFare": "LIGHT1",
"class": "S",
"includedCheckedBags": {
"quantity": 0
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "16",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2021-11-20",
"numberOfBookableSeats": 9,
"itineraries": [
{
"duration": "PT28H",
"segments": [
{
"departure": {
"iataCode": "ATH",
"at": "2021-11-20T14:25:00"
},
"arrival": {
"iataCode": "CDG",
"terminal": "2F",
"at": "2021-11-20T17:00:00"
},
"carrierCode": "AF",
"number": "1533",
"aircraft": {
"code": "320"
},
"operating": {
"carrierCode": "AF"
},
"duration": "PT3H35M",
"id": "5",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "ORY",
"terminal": "3",
"at": "2021-11-21T15:35:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "2",
"at": "2021-11-21T17:25:00"
},
"carrierCode": "AF",
"number": "9432",
"aircraft": {
"code": "318"
},
"operating": {
"carrierCode": "AF"
},
"duration": "PT1H50M",
"id": "6",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "265.32",
"base": "207.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "265.32",
"additionalServices": [
{
"amount": "30.00",
"type": "CHECKED_BAGS"
}
]
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": false
},
"validatingAirlineCodes": [
"AF"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "265.32",
"base": "207.00"
},
"fareDetailsBySegment": [
{
"segmentId": "5",
"cabin": "ECONOMY",
"fareBasis": "SS50BALG",
"class": "S",
"includedCheckedBags": {
"quantity": 0
}
},
{
"segmentId": "6",
"cabin": "ECONOMY",
"fareBasis": "SS50BALG",
"brandedFare": "LIGHT1",
"class": "S",
"includedCheckedBags": {
"quantity": 0
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "17",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2021-11-20",
"numberOfBookableSeats": 2,
"itineraries": [
{
"duration": "PT28H",
"segments": [
{
"departure": {
"iataCode": "ATH",
"at": "2021-11-20T06:10:00"
},
"arrival": {
"iataCode": "CDG",
"terminal": "2F",
"at": "2021-11-20T08:50:00"
},
"carrierCode": "AF",
"number": "1033",
"aircraft": {
"code": "320"
},
"operating": {
"carrierCode": "AF"
},
"duration": "PT3H40M",
"id": "3",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "CDG",
"terminal": "2F",
"at": "2021-11-21T07:00:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "2",
"at": "2021-11-21T09:10:00"
},
"carrierCode": "AF",
"number": "1000",
"aircraft": {
"code": "318"
},
"operating": {
"carrierCode": "AF"
},
"duration": "PT2H10M",
"id": "4",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "266.40",
"base": "207.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "266.40",
"additionalServices": [
{
"amount": "30.00",
"type": "CHECKED_BAGS"
}
]
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": false
},
"validatingAirlineCodes": [
"AF"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "266.40",
"base": "207.00"
},
"fareDetailsBySegment": [
{
"segmentId": "3",
"cabin": "ECONOMY",
"fareBasis": "SS50BALG",
"class": "S",
"includedCheckedBags": {
"quantity": 0
}
},
{
"segmentId": "4",
"cabin": "ECONOMY",
"fareBasis": "SS50BALG",
"brandedFare": "LIGHT1",
"class": "S",
"includedCheckedBags": {
"quantity": 0
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "18",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2021-11-20",
"numberOfBookableSeats": 3,
"itineraries": [
{
"duration": "PT9H40M",
"segments": [
{
"departure": {
"iataCode": "ATH",
"at": "2021-11-20T14:25:00"
},
"arrival": {
"iataCode": "CDG",
"terminal": "2F",
"at": "2021-11-20T17:00:00"
},
"carrierCode": "AF",
"number": "1533",
"aircraft": {
"code": "320"
},
"operating": {
"carrierCode": "AF"
},
"duration": "PT3H35M",
"id": "64",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "CDG",
"terminal": "2F",
"at": "2021-11-20T20:50:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "2",
"at": "2021-11-20T23:05:00"
},
"carrierCode": "AF",
"number": "1400",
"aircraft": {
"code": "319"
},
"operating": {
"carrierCode": "AF"
},
"duration": "PT2H15M",
"id": "65",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "311.23",
"base": "253.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "311.23",
"additionalServices": [
{
"amount": "30.00",
"type": "CHECKED_BAGS"
}
]
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": false
},
"validatingAirlineCodes": [
"AF"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "311.23",
"base": "253.00"
},
"fareDetailsBySegment": [
{
"segmentId": "64",
"cabin": "ECONOMY",
"fareBasis": "WS50BALG",
"class": "W",
"includedCheckedBags": {
"quantity": 0
}
},
{
"segmentId": "65",
"cabin": "ECONOMY",
"fareBasis": "WS50BALG",
"brandedFare": "LIGHT1",
"class": "W",
"includedCheckedBags": {
"quantity": 0
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "19",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2021-11-20",
"numberOfBookableSeats": 9,
"itineraries": [
{
"duration": "PT17H55M",
"segments": [
{
"departure": {
"iataCode": "ATH",
"at": "2021-11-20T06:10:00"
},
"arrival": {
"iataCode": "CDG",
"terminal": "2F",
"at": "2021-11-20T08:50:00"
},
"carrierCode": "AF",
"number": "1033",
"aircraft": {
"code": "320"
},
"operating": {
"carrierCode": "AF"
},
"duration": "PT3H40M",
"id": "86",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "CDG",
"terminal": "2F",
"at": "2021-11-20T20:50:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "2",
"at": "2021-11-20T23:05:00"
},
"carrierCode": "AF",
"number": "1400",
"aircraft": {
"code": "319"
},
"operating": {
"carrierCode": "AF"
},
"duration": "PT2H15M",
"id": "87",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "311.23",
"base": "253.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "311.23",
"additionalServices": [
{
"amount": "30.00",
"type": "CHECKED_BAGS"
}
]
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": false
},
"validatingAirlineCodes": [
"AF"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "311.23",
"base": "253.00"
},
"fareDetailsBySegment": [
{
"segmentId": "86",
"cabin": "ECONOMY",
"fareBasis": "WS50BALG",
"class": "W",
"includedCheckedBags": {
"quantity": 0
}
},
{
"segmentId": "87",
"cabin": "ECONOMY",
"fareBasis": "WS50BALG",
"brandedFare": "LIGHT1",
"class": "W",
"includedCheckedBags": {
"quantity": 0
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "20",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2021-11-20",
"numberOfBookableSeats": 9,
"itineraries": [
{
"duration": "PT19H45M",
"segments": [
{
"departure": {
"iataCode": "ATH",
"at": "2021-11-20T14:25:00"
},
"arrival": {
"iataCode": "CDG",
"terminal": "2F",
"at": "2021-11-20T17:00:00"
},
"carrierCode": "AF",
"number": "1533",
"aircraft": {
"code": "320"
},
"operating": {
"carrierCode": "AF"
},
"duration": "PT3H35M",
"id": "74",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "CDG",
"terminal": "2F",
"at": "2021-11-21T07:00:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "2",
"at": "2021-11-21T09:10:00"
},
"carrierCode": "AF",
"number": "1000",
"aircraft": {
"code": "318"
},
"operating": {
"carrierCode": "AF"
},
"duration": "PT2H10M",
"id": "75",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "312.40",
"base": "253.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "312.40",
"additionalServices": [
{
"amount": "30.00",
"type": "CHECKED_BAGS"
}
]
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": false
},
"validatingAirlineCodes": [
"AF"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "312.40",
"base": "253.00"
},
"fareDetailsBySegment": [
{
"segmentId": "74",
"cabin": "ECONOMY",
"fareBasis": "WS50BALG",
"class": "W",
"includedCheckedBags": {
"quantity": 0
}
},
{
"segmentId": "75",
"cabin": "ECONOMY",
"fareBasis": "WS50BALG",
"brandedFare": "LIGHT1",
"class": "W",
"includedCheckedBags": {
"quantity": 0
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "21",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2021-11-20",
"numberOfBookableSeats": 9,
"itineraries": [
{
"duration": "PT22H10M",
"segments": [
{
"departure": {
"iataCode": "ATH",
"at": "2021-11-20T14:25:00"
},
"arrival": {
"iataCode": "CDG",
"terminal": "2F",
"at": "2021-11-20T17:00:00"
},
"carrierCode": "AF",
"number": "1533",
"aircraft": {
"code": "320"
},
"operating": {
"carrierCode": "AF"
},
"duration": "PT3H35M",
"id": "22",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "CDG",
"terminal": "2F",
"at": "2021-11-21T09:30:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "2",
"at": "2021-11-21T11:35:00"
},
"carrierCode": "AF",
"number": "1300",
"aircraft": {
"code": "320"
},
"operating": {
"carrierCode": "AF"
},
"duration": "PT2H5M",
"id": "23",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "312.40",
"base": "253.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "312.40",
"additionalServices": [
{
"amount": "30.00",
"type": "CHECKED_BAGS"
}
]
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": false
},
"validatingAirlineCodes": [
"AF"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "312.40",
"base": "253.00"
},
"fareDetailsBySegment": [
{
"segmentId": "22",
"cabin": "ECONOMY",
"fareBasis": "WS50BALG",
"class": "W",
"includedCheckedBags": {
"quantity": 0
}
},
{
"segmentId": "23",
"cabin": "ECONOMY",
"fareBasis": "WS50BALG",
"brandedFare": "LIGHT1",
"class": "W",
"includedCheckedBags": {
"quantity": 0
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "22",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2021-06-12",
"numberOfBookableSeats": 9,
"itineraries": [
{
"duration": "PT9H20M",
"segments": [
{
"departure": {
"iataCode": "ATH",
"at": "2021-11-20T06:20:00"
},
"arrival": {
"iataCode": "ZRH",
"at": "2021-11-20T08:10:00"
},
"carrierCode": "LX",
"number": "1843",
"aircraft": {
"code": "321"
},
"operating": {
"carrierCode": "LX"
},
"duration": "PT2H50M",
"id": "38",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "ZRH",
"at": "2021-11-20T12:15:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "1",
"at": "2021-11-20T14:40:00"
},
"carrierCode": "LX",
"number": "2026",
"aircraft": {
"code": "221"
},
"operating": {
"carrierCode": "LX"
},
"duration": "PT2H25M",
"id": "39",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "342.83",
"base": "221.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "342.83",
"additionalServices": [
{
"amount": "64.00",
"type": "CHECKED_BAGS"
}
]
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": true
},
"validatingAirlineCodes": [
"LX"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "342.83",
"base": "221.00"
},
"fareDetailsBySegment": [
{
"segmentId": "38",
"cabin": "ECONOMY",
"fareBasis": "V03CLSE9",
"class": "V",
"includedCheckedBags": {
"quantity": 1
}
},
{
"segmentId": "39",
"cabin": "ECONOMY",
"fareBasis": "V03CLSE9",
"brandedFare": "CLASSIC",
"class": "V",
"includedCheckedBags": {
"quantity": 1
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "23",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2021-06-12",
"numberOfBookableSeats": 9,
"itineraries": [
{
"duration": "PT21H55M",
"segments": [
{
"departure": {
"iataCode": "ATH",
"at": "2021-11-20T17:45:00"
},
"arrival": {
"iataCode": "ZRH",
"at": "2021-11-20T19:35:00"
},
"carrierCode": "LX",
"number": "1839",
"aircraft": {
"code": "321"
},
"operating": {
"carrierCode": "LX"
},
"duration": "PT2H50M",
"id": "96",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "ZRH",
"at": "2021-11-21T12:15:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "1",
"at": "2021-11-21T14:40:00"
},
"carrierCode": "LX",
"number": "2026",
"aircraft": {
"code": "223"
},
"operating": {
"carrierCode": "LX"
},
"duration": "PT2H25M",
"id": "97",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "342.83",
"base": "221.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "342.83",
"additionalServices": [
{
"amount": "64.00",
"type": "CHECKED_BAGS"
}
]
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": true
},
"validatingAirlineCodes": [
"LX"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "342.83",
"base": "221.00"
},
"fareDetailsBySegment": [
{
"segmentId": "96",
"cabin": "ECONOMY",
"fareBasis": "V03CLSE9",
"class": "V",
"includedCheckedBags": {
"quantity": 1
}
},
{
"segmentId": "97",
"cabin": "ECONOMY",
"fareBasis": "V03CLSE9",
"brandedFare": "CLASSIC",
"class": "V",
"includedCheckedBags": {
"quantity": 1
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "24",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2021-06-12",
"numberOfBookableSeats": 9,
"itineraries": [
{
"duration": "PT25H35M",
"segments": [
{
"departure": {
"iataCode": "ATH",
"at": "2021-11-20T14:05:00"
},
"arrival": {
"iataCode": "ZRH",
"at": "2021-11-20T15:55:00"
},
"carrierCode": "LX",
"number": "1831",
"aircraft": {
"code": "321"
},
"operating": {
"carrierCode": "LX"
},
"duration": "PT2H50M",
"id": "62",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "ZRH",
"at": "2021-11-21T12:15:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "1",
"at": "2021-11-21T14:40:00"
},
"carrierCode": "LX",
"number": "2026",
"aircraft": {
"code": "223"
},
"operating": {
"carrierCode": "LX"
},
"duration": "PT2H25M",
"id": "63",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "342.83",
"base": "221.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "342.83",
"additionalServices": [
{
"amount": "64.00",
"type": "CHECKED_BAGS"
}
]
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": true
},
"validatingAirlineCodes": [
"LX"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "342.83",
"base": "221.00"
},
"fareDetailsBySegment": [
{
"segmentId": "62",
"cabin": "ECONOMY",
"fareBasis": "V03CLSE9",
"class": "V",
"includedCheckedBags": {
"quantity": 1
}
},
{
"segmentId": "63",
"cabin": "ECONOMY",
"fareBasis": "V03CLSE9",
"brandedFare": "CLASSIC",
"class": "V",
"includedCheckedBags": {
"quantity": 1
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "25",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2021-06-12",
"numberOfBookableSeats": 9,
"itineraries": [
{
"duration": "PT26H15M",
"segments": [
{
"departure": {
"iataCode": "ATH",
"at": "2021-11-20T17:45:00"
},
"arrival": {
"iataCode": "ZRH",
"at": "2021-11-20T19:35:00"
},
"carrierCode": "LX",
"number": "1839",
"aircraft": {
"code": "321"
},
"operating": {
"carrierCode": "LX"
},
"duration": "PT2H50M",
"id": "32",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "ZRH",
"at": "2021-11-21T16:40:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "1",
"at": "2021-11-21T19:00:00"
},
"carrierCode": "LX",
"number": "2032",
"aircraft": {
"code": "221"
},
"operating": {
"carrierCode": "LX"
},
"duration": "PT2H20M",
"id": "33",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "342.83",
"base": "221.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "342.83",
"additionalServices": [
{
"amount": "64.00",
"type": "CHECKED_BAGS"
}
]
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": true
},
"validatingAirlineCodes": [
"LX"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "342.83",
"base": "221.00"
},
"fareDetailsBySegment": [
{
"segmentId": "32",
"cabin": "ECONOMY",
"fareBasis": "V03CLSE9",
"class": "V",
"includedCheckedBags": {
"quantity": 1
}
},
{
"segmentId": "33",
"cabin": "ECONOMY",
"fareBasis": "V03CLSE9",
"brandedFare": "CLASSIC",
"class": "V",
"includedCheckedBags": {
"quantity": 1
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "26",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2021-06-12",
"numberOfBookableSeats": 9,
"itineraries": [
{
"duration": "PT6H10M",
"segments": [
{
"departure": {
"iataCode": "ATH",
"at": "2021-11-20T06:10:00"
},
"arrival": {
"iataCode": "MUC",
"terminal": "2",
"at": "2021-11-20T07:45:00"
},
"carrierCode": "LH",
"number": "1757",
"aircraft": {
"code": "320"
},
"operating": {
"carrierCode": "LH"
},
"duration": "PT2H35M",
"id": "16",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "MUC",
"terminal": "2",
"at": "2021-11-20T08:40:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "1",
"at": "2021-11-20T11:20:00"
},
"carrierCode": "LH",
"number": "1800",
"aircraft": {
"code": "320"
},
"operating": {
"carrierCode": "LH"
},
"duration": "PT2H40M",
"id": "17",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "350.67",
"base": "226.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "350.67",
"additionalServices": [
{
"amount": "64.00",
"type": "CHECKED_BAGS"
}
]
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": true
},
"validatingAirlineCodes": [
"LH"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "350.67",
"base": "226.00"
},
"fareDetailsBySegment": [
{
"segmentId": "16",
"cabin": "ECONOMY",
"fareBasis": "V03CLSE9",
"class": "V",
"includedCheckedBags": {
"quantity": 1
}
},
{
"segmentId": "17",
"cabin": "ECONOMY",
"fareBasis": "V03CLSE9",
"brandedFare": "CLASSIC",
"class": "V",
"includedCheckedBags": {
"quantity": 1
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "27",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2021-06-12",
"numberOfBookableSeats": 9,
"itineraries": [
{
"duration": "PT8H10M",
"segments": [
{
"departure": {
"iataCode": "ATH",
"at": "2021-11-20T16:15:00"
},
"arrival": {
"iataCode": "MUC",
"terminal": "2",
"at": "2021-11-20T17:50:00"
},
"carrierCode": "LH",
"number": "1755",
"aircraft": {
"code": "320"
},
"operating": {
"carrierCode": "LH"
},
"duration": "PT2H35M",
"id": "20",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "MUC",
"terminal": "2",
"at": "2021-11-20T20:45:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "1",
"at": "2021-11-20T23:25:00"
},
"carrierCode": "LH",
"number": "1806",
"aircraft": {
"code": "320"
},
"operating": {
"carrierCode": "LH"
},
"duration": "PT2H40M",
"id": "21",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "350.67",
"base": "226.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "350.67",
"additionalServices": [
{
"amount": "64.00",
"type": "CHECKED_BAGS"
}
]
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": true
},
"validatingAirlineCodes": [
"LH"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "350.67",
"base": "226.00"
},
"fareDetailsBySegment": [
{
"segmentId": "20",
"cabin": "ECONOMY",
"fareBasis": "V03CLSE9",
"class": "V",
"includedCheckedBags": {
"quantity": 1
}
},
{
"segmentId": "21",
"cabin": "ECONOMY",
"fareBasis": "V03CLSE9",
"brandedFare": "CLASSIC",
"class": "V",
"includedCheckedBags": {
"quantity": 1
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "28",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2021-06-12",
"numberOfBookableSeats": 9,
"itineraries": [
{
"duration": "PT9H25M",
"segments": [
{
"departure": {
"iataCode": "ATH",
"at": "2021-11-20T06:10:00"
},
"arrival": {
"iataCode": "MUC",
"terminal": "2",
"at": "2021-11-20T07:45:00"
},
"carrierCode": "LH",
"number": "1757",
"aircraft": {
"code": "320"
},
"operating": {
"carrierCode": "LH"
},
"duration": "PT2H35M",
"id": "44",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "MUC",
"terminal": "2",
"at": "2021-11-20T11:55:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "1",
"at": "2021-11-20T14:35:00"
},
"carrierCode": "LH",
"number": "1802",
"aircraft": {
"code": "320"
},
"operating": {
"carrierCode": "LH"
},
"duration": "PT2H40M",
"id": "45",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "350.67",
"base": "226.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "350.67",
"additionalServices": [
{
"amount": "64.00",
"type": "CHECKED_BAGS"
}
]
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": true
},
"validatingAirlineCodes": [
"LH"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "350.67",
"base": "226.00"
},
"fareDetailsBySegment": [
{
"segmentId": "44",
"cabin": "ECONOMY",
"fareBasis": "V03CLSE9",
"class": "V",
"includedCheckedBags": {
"quantity": 1
}
},
{
"segmentId": "45",
"cabin": "ECONOMY",
"fareBasis": "V03CLSE9",
"brandedFare": "CLASSIC",
"class": "V",
"includedCheckedBags": {
"quantity": 1
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "29",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2021-06-12",
"numberOfBookableSeats": 9,
"itineraries": [
{
"duration": "PT11H30M",
"segments": [
{
"departure": {
"iataCode": "ATH",
"at": "2021-11-20T12:55:00"
},
"arrival": {
"iataCode": "MUC",
"terminal": "2",
"at": "2021-11-20T14:30:00"
},
"carrierCode": "LH",
"number": "1753",
"aircraft": {
"code": "320"
},
"operating": {
"carrierCode": "LH"
},
"duration": "PT2H35M",
"id": "52",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "MUC",
"terminal": "2",
"at": "2021-11-20T20:45:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "1",
"at": "2021-11-20T23:25:00"
},
"carrierCode": "LH",
"number": "1806",
"aircraft": {
"code": "320"
},
"operating": {
"carrierCode": "LH"
},
"duration": "PT2H40M",
"id": "53",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "350.67",
"base": "226.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "350.67",
"additionalServices": [
{
"amount": "64.00",
"type": "CHECKED_BAGS"
}
]
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": true
},
"validatingAirlineCodes": [
"LH"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "350.67",
"base": "226.00"
},
"fareDetailsBySegment": [
{
"segmentId": "52",
"cabin": "ECONOMY",
"fareBasis": "V03CLSE9",
"class": "V",
"includedCheckedBags": {
"quantity": 1
}
},
{
"segmentId": "53",
"cabin": "ECONOMY",
"fareBasis": "V03CLSE9",
"brandedFare": "CLASSIC",
"class": "V",
"includedCheckedBags": {
"quantity": 1
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "30",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2021-06-12",
"numberOfBookableSeats": 9,
"itineraries": [
{
"duration": "PT6H35M",
"segments": [
{
"departure": {
"iataCode": "ATH",
"at": "2021-11-20T17:50:00"
},
"arrival": {
"iataCode": "FRA",
"terminal": "1",
"at": "2021-11-20T19:50:00"
},
"carrierCode": "LH",
"number": "1283",
"aircraft": {
"code": "321"
},
"operating": {
"carrierCode": "LH"
},
"duration": "PT3H",
"id": "58",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "FRA",
"terminal": "1",
"at": "2021-11-20T20:50:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "1",
"at": "2021-11-20T23:25:00"
},
"carrierCode": "LH",
"number": "1120",
"aircraft": {
"code": "321"
},
"operating": {
"carrierCode": "LH"
},
"duration": "PT2H35M",
"id": "59",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "356.52",
"base": "226.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "356.52",
"additionalServices": [
{
"amount": "64.00",
"type": "CHECKED_BAGS"
}
]
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": true
},
"validatingAirlineCodes": [
"LH"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "356.52",
"base": "226.00"
},
"fareDetailsBySegment": [
{
"segmentId": "58",
"cabin": "ECONOMY",
"fareBasis": "V03CLSE9",
"class": "V",
"includedCheckedBags": {
"quantity": 1
}
},
{
"segmentId": "59",
"cabin": "ECONOMY",
"fareBasis": "V03CLSE9",
"brandedFare": "CLASSIC",
"class": "V",
"includedCheckedBags": {
"quantity": 1
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "31",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2021-06-12",
"numberOfBookableSeats": 9,
"itineraries": [
{
"duration": "PT6H45M",
"segments": [
{
"departure": {
"iataCode": "ATH",
"at": "2021-11-20T07:00:00"
},
"arrival": {
"iataCode": "FRA",
"terminal": "1",
"at": "2021-11-20T09:05:00"
},
"carrierCode": "LH",
"number": "1285",
"aircraft": {
"code": "321"
},
"operating": {
"carrierCode": "LH"
},
"duration": "PT3H5M",
"id": "70",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "FRA",
"terminal": "1",
"at": "2021-11-20T10:10:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "1",
"at": "2021-11-20T12:45:00"
},
"carrierCode": "LH",
"number": "1112",
"aircraft": {
"code": "321"
},
"operating": {
"carrierCode": "LH"
},
"duration": "PT2H35M",
"id": "71",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "356.52",
"base": "226.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "356.52",
"additionalServices": [
{
"amount": "64.00",
"type": "CHECKED_BAGS"
}
]
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": true
},
"validatingAirlineCodes": [
"LH"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "356.52",
"base": "226.00"
},
"fareDetailsBySegment": [
{
"segmentId": "70",
"cabin": "ECONOMY",
"fareBasis": "V03CLSE9",
"class": "V",
"includedCheckedBags": {
"quantity": 1
}
},
{
"segmentId": "71",
"cabin": "ECONOMY",
"fareBasis": "V03CLSE9",
"brandedFare": "CLASSIC",
"class": "V",
"includedCheckedBags": {
"quantity": 1
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "32",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2021-06-12",
"numberOfBookableSeats": 9,
"itineraries": [
{
"duration": "PT9H35M",
"segments": [
{
"departure": {
"iataCode": "ATH",
"at": "2021-11-20T07:00:00"
},
"arrival": {
"iataCode": "FRA",
"terminal": "1",
"at": "2021-11-20T09:05:00"
},
"carrierCode": "LH",
"number": "1285",
"aircraft": {
"code": "321"
},
"operating": {
"carrierCode": "LH"
},
"duration": "PT3H5M",
"id": "60",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "FRA",
"terminal": "1",
"at": "2021-11-20T13:00:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "1",
"at": "2021-11-20T15:35:00"
},
"carrierCode": "LH",
"number": "1114",
"aircraft": {
"code": "321"
},
"operating": {
"carrierCode": "LH"
},
"duration": "PT2H35M",
"id": "61",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "356.52",
"base": "226.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "356.52",
"additionalServices": [
{
"amount": "64.00",
"type": "CHECKED_BAGS"
}
]
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": true
},
"validatingAirlineCodes": [
"LH"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "356.52",
"base": "226.00"
},
"fareDetailsBySegment": [
{
"segmentId": "60",
"cabin": "ECONOMY",
"fareBasis": "V03CLSE9",
"class": "V",
"includedCheckedBags": {
"quantity": 1
}
},
{
"segmentId": "61",
"cabin": "ECONOMY",
"fareBasis": "V03CLSE9",
"brandedFare": "CLASSIC",
"class": "V",
"includedCheckedBags": {
"quantity": 1
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "33",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2021-06-12",
"numberOfBookableSeats": 9,
"itineraries": [
{
"duration": "PT10H5M",
"segments": [
{
"departure": {
"iataCode": "ATH",
"at": "2021-11-20T14:20:00"
},
"arrival": {
"iataCode": "FRA",
"terminal": "1",
"at": "2021-11-20T16:20:00"
},
"carrierCode": "LH",
"number": "1279",
"aircraft": {
"code": "321"
},
"operating": {
"carrierCode": "LH"
},
"duration": "PT3H",
"id": "8",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "FRA",
"terminal": "1",
"at": "2021-11-20T20:50:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "1",
"at": "2021-11-20T23:25:00"
},
"carrierCode": "LH",
"number": "1120",
"aircraft": {
"code": "321"
},
"operating": {
"carrierCode": "LH"
},
"duration": "PT2H35M",
"id": "9",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "356.52",
"base": "226.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "356.52",
"additionalServices": [
{
"amount": "64.00",
"type": "CHECKED_BAGS"
}
]
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": true
},
"validatingAirlineCodes": [
"LH"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "356.52",
"base": "226.00"
},
"fareDetailsBySegment": [
{
"segmentId": "8",
"cabin": "ECONOMY",
"fareBasis": "V03CLSE9",
"class": "V",
"includedCheckedBags": {
"quantity": 1
}
},
{
"segmentId": "9",
"cabin": "ECONOMY",
"fareBasis": "V03CLSE9",
"brandedFare": "CLASSIC",
"class": "V",
"includedCheckedBags": {
"quantity": 1
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "34",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2021-06-12",
"numberOfBookableSeats": 9,
"itineraries": [
{
"duration": "PT13H25M",
"segments": [
{
"departure": {
"iataCode": "ATH",
"at": "2021-11-20T07:00:00"
},
"arrival": {
"iataCode": "FRA",
"terminal": "1",
"at": "2021-11-20T09:05:00"
},
"carrierCode": "LH",
"number": "1285",
"aircraft": {
"code": "321"
},
"operating": {
"carrierCode": "LH"
},
"duration": "PT3H5M",
"id": "46",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "FRA",
"terminal": "1",
"at": "2021-11-20T16:50:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "1",
"at": "2021-11-20T19:25:00"
},
"carrierCode": "LH",
"number": "1122",
"aircraft": {
"code": "321"
},
"operating": {
"carrierCode": "LH"
},
"duration": "PT2H35M",
"id": "47",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "356.52",
"base": "226.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "356.52",
"additionalServices": [
{
"amount": "64.00",
"type": "CHECKED_BAGS"
}
]
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": true
},
"validatingAirlineCodes": [
"LH"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "356.52",
"base": "226.00"
},
"fareDetailsBySegment": [
{
"segmentId": "46",
"cabin": "ECONOMY",
"fareBasis": "V03CLSE9",
"class": "V",
"includedCheckedBags": {
"quantity": 1
}
},
{
"segmentId": "47",
"cabin": "ECONOMY",
"fareBasis": "V03CLSE9",
"brandedFare": "CLASSIC",
"class": "V",
"includedCheckedBags": {
"quantity": 1
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "35",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2021-06-12",
"numberOfBookableSeats": 9,
"itineraries": [
{
"duration": "PT17H25M",
"segments": [
{
"departure": {
"iataCode": "ATH",
"at": "2021-11-20T07:00:00"
},
"arrival": {
"iataCode": "FRA",
"terminal": "1",
"at": "2021-11-20T09:05:00"
},
"carrierCode": "LH",
"number": "1285",
"aircraft": {
"code": "321"
},
"operating": {
"carrierCode": "LH"
},
"duration": "PT3H5M",
"id": "48",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "FRA",
"terminal": "1",
"at": "2021-11-20T20:50:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "1",
"at": "2021-11-20T23:25:00"
},
"carrierCode": "LH",
"number": "1120",
"aircraft": {
"code": "321"
},
"operating": {
"carrierCode": "LH"
},
"duration": "PT2H35M",
"id": "49",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "356.52",
"base": "226.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "356.52",
"additionalServices": [
{
"amount": "64.00",
"type": "CHECKED_BAGS"
}
]
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": true
},
"validatingAirlineCodes": [
"LH"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "356.52",
"base": "226.00"
},
"fareDetailsBySegment": [
{
"segmentId": "48",
"cabin": "ECONOMY",
"fareBasis": "V03CLSE9",
"class": "V",
"includedCheckedBags": {
"quantity": 1
}
},
{
"segmentId": "49",
"cabin": "ECONOMY",
"fareBasis": "V03CLSE9",
"brandedFare": "CLASSIC",
"class": "V",
"includedCheckedBags": {
"quantity": 1
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "36",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2021-06-12",
"numberOfBookableSeats": 9,
"itineraries": [
{
"duration": "PT18H15M",
"segments": [
{
"departure": {
"iataCode": "ATH",
"at": "2021-11-20T06:10:00"
},
"arrival": {
"iataCode": "MUC",
"terminal": "2",
"at": "2021-11-20T07:45:00"
},
"carrierCode": "LH",
"number": "1757",
"aircraft": {
"code": "320"
},
"operating": {
"carrierCode": "LH"
},
"duration": "PT2H35M",
"id": "30",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "MUC",
"terminal": "2",
"at": "2021-11-20T20:45:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "1",
"at": "2021-11-20T23:25:00"
},
"carrierCode": "LH",
"number": "1806",
"aircraft": {
"code": "320"
},
"operating": {
"carrierCode": "LH"
},
"duration": "PT2H40M",
"id": "31",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "363.55",
"base": "226.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "363.55",
"additionalServices": [
{
"amount": "64.00",
"type": "CHECKED_BAGS"
}
]
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": true
},
"validatingAirlineCodes": [
"LH"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "363.55",
"base": "226.00"
},
"fareDetailsBySegment": [
{
"segmentId": "30",
"cabin": "ECONOMY",
"fareBasis": "V03CLSE9",
"class": "V",
"includedCheckedBags": {
"quantity": 1
}
},
{
"segmentId": "31",
"cabin": "ECONOMY",
"fareBasis": "V03CLSE9",
"brandedFare": "CLASSIC",
"class": "V",
"includedCheckedBags": {
"quantity": 1
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "37",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2021-06-12",
"numberOfBookableSeats": 9,
"itineraries": [
{
"duration": "PT20H5M",
"segments": [
{
"departure": {
"iataCode": "ATH",
"at": "2021-11-20T16:15:00"
},
"arrival": {
"iataCode": "MUC",
"terminal": "2",
"at": "2021-11-20T17:50:00"
},
"carrierCode": "LH",
"number": "1755",
"aircraft": {
"code": "320"
},
"operating": {
"carrierCode": "LH"
},
"duration": "PT2H35M",
"id": "12",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "MUC",
"terminal": "2",
"at": "2021-11-21T08:40:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "1",
"at": "2021-11-21T11:20:00"
},
"carrierCode": "LH",
"number": "1800",
"aircraft": {
"code": "320"
},
"operating": {
"carrierCode": "LH"
},
"duration": "PT2H40M",
"id": "13",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "370.24",
"base": "226.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "370.24",
"additionalServices": [
{
"amount": "64.00",
"type": "CHECKED_BAGS"
}
]
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": true
},
"validatingAirlineCodes": [
"LH"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "370.24",
"base": "226.00"
},
"fareDetailsBySegment": [
{
"segmentId": "12",
"cabin": "ECONOMY",
"fareBasis": "V03CLSE9",
"class": "V",
"includedCheckedBags": {
"quantity": 1
}
},
{
"segmentId": "13",
"cabin": "ECONOMY",
"fareBasis": "V03CLSE9",
"brandedFare": "CLASSIC",
"class": "V",
"includedCheckedBags": {
"quantity": 1
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "38",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2021-06-12",
"numberOfBookableSeats": 9,
"itineraries": [
{
"duration": "PT19H55M",
"segments": [
{
"departure": {
"iataCode": "ATH",
"at": "2021-11-20T17:50:00"
},
"arrival": {
"iataCode": "FRA",
"terminal": "1",
"at": "2021-11-20T19:50:00"
},
"carrierCode": "LH",
"number": "1283",
"aircraft": {
"code": "321"
},
"operating": {
"carrierCode": "LH"
},
"duration": "PT3H",
"id": "94",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "FRA",
"terminal": "1",
"at": "2021-11-21T10:10:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "1",
"at": "2021-11-21T12:45:00"
},
"carrierCode": "LH",
"number": "1112",
"aircraft": {
"code": "321"
},
"operating": {
"carrierCode": "LH"
},
"duration": "PT2H35M",
"id": "95",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "374.63",
"base": "226.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "374.63",
"additionalServices": [
{
"amount": "64.00",
"type": "CHECKED_BAGS"
}
]
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": true
},
"validatingAirlineCodes": [
"LH"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "374.63",
"base": "226.00"
},
"fareDetailsBySegment": [
{
"segmentId": "94",
"cabin": "ECONOMY",
"fareBasis": "V03CLSE9",
"class": "V",
"includedCheckedBags": {
"quantity": 1
}
},
{
"segmentId": "95",
"cabin": "ECONOMY",
"fareBasis": "V03CLSE9",
"brandedFare": "CLASSIC",
"class": "V",
"includedCheckedBags": {
"quantity": 1
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "39",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2021-06-12",
"numberOfBookableSeats": 9,
"itineraries": [
{
"duration": "PT22H45M",
"segments": [
{
"departure": {
"iataCode": "ATH",
"at": "2021-11-20T17:50:00"
},
"arrival": {
"iataCode": "FRA",
"terminal": "1",
"at": "2021-11-20T19:50:00"
},
"carrierCode": "LH",
"number": "1283",
"aircraft": {
"code": "321"
},
"operating": {
"carrierCode": "LH"
},
"duration": "PT3H",
"id": "78",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "FRA",
"terminal": "1",
"at": "2021-11-21T13:00:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "1",
"at": "2021-11-21T15:35:00"
},
"carrierCode": "LH",
"number": "1114",
"aircraft": {
"code": "321"
},
"operating": {
"carrierCode": "LH"
},
"duration": "PT2H35M",
"id": "79",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "374.63",
"base": "226.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "374.63",
"additionalServices": [
{
"amount": "64.00",
"type": "CHECKED_BAGS"
}
]
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": true
},
"validatingAirlineCodes": [
"LH"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "374.63",
"base": "226.00"
},
"fareDetailsBySegment": [
{
"segmentId": "78",
"cabin": "ECONOMY",
"fareBasis": "V03CLSE9",
"class": "V",
"includedCheckedBags": {
"quantity": 1
}
},
{
"segmentId": "79",
"cabin": "ECONOMY",
"fareBasis": "V03CLSE9",
"brandedFare": "CLASSIC",
"class": "V",
"includedCheckedBags": {
"quantity": 1
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "40",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2021-11-20",
"numberOfBookableSeats": 9,
"itineraries": [
{
"duration": "PT22H50M",
"segments": [
{
"departure": {
"iataCode": "ATH",
"at": "2021-11-20T16:00:00"
},
"arrival": {
"iataCode": "CAI",
"terminal": "3",
"at": "2021-11-20T17:50:00"
},
"carrierCode": "MS",
"number": "748",
"aircraft": {
"code": "32N"
},
"operating": {
"carrierCode": "MS"
},
"duration": "PT1H50M",
"id": "84",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "CAI",
"terminal": "2",
"at": "2021-11-21T09:30:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "1",
"at": "2021-11-21T13:50:00"
},
"carrierCode": "MS",
"number": "753",
"aircraft": {
"code": "738"
},
"operating": {
"carrierCode": "MS"
},
"duration": "PT5H20M",
"id": "85",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "411.33",
"base": "214.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "411.33"
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": true
},
"validatingAirlineCodes": [
"MS"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "411.33",
"base": "214.00"
},
"fareDetailsBySegment": [
{
"segmentId": "84",
"cabin": "ECONOMY",
"fareBasis": "LRIMS",
"class": "L",
"includedCheckedBags": {
"quantity": 2
}
},
{
"segmentId": "85",
"cabin": "ECONOMY",
"fareBasis": "LWRIMS",
"class": "L",
"includedCheckedBags": {
"quantity": 2
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "41",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2021-11-20",
"numberOfBookableSeats": 9,
"itineraries": [
{
"duration": "PT19H45M",
"segments": [
{
"departure": {
"iataCode": "ATH",
"at": "2021-11-20T17:55:00"
},
"arrival": {
"iataCode": "DXB",
"terminal": "3",
"at": "2021-11-21T00:20:00"
},
"carrierCode": "EK",
"number": "210",
"aircraft": {
"code": "77W"
},
"operating": {
"carrierCode": "EK"
},
"duration": "PT4H25M",
"id": "76",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "DXB",
"terminal": "3",
"at": "2021-11-21T07:25:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "4S",
"at": "2021-11-21T12:40:00"
},
"carrierCode": "EK",
"number": "141",
"aircraft": {
"code": "77W"
},
"operating": {
"carrierCode": "EK"
},
"duration": "PT8H15M",
"id": "77",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "753.95",
"base": "662.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "753.95"
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": true
},
"validatingAirlineCodes": [
"EK"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "753.95",
"base": "662.00"
},
"fareDetailsBySegment": [
{
"segmentId": "76",
"cabin": "ECONOMY",
"fareBasis": "KLEESGR1",
"brandedFare": "ECOFLEX",
"class": "K",
"includedCheckedBags": {
"weight": 30,
"weightUnit": "KG"
}
},
{
"segmentId": "77",
"cabin": "ECONOMY",
"fareBasis": "KEEESES1",
"brandedFare": "ECOFLEX",
"class": "K",
"includedCheckedBags": {
"weight": 30,
"weightUnit": "KG"
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "42",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2021-06-30",
"numberOfBookableSeats": 7,
"itineraries": [
{
"duration": "PT18H30M",
"segments": [
{
"departure": {
"iataCode": "ATH",
"at": "2021-11-20T13:55:00"
},
"arrival": {
"iataCode": "AUH",
"terminal": "3",
"at": "2021-11-20T20:15:00"
},
"carrierCode": "EY",
"number": "90",
"aircraft": {
"code": "320"
},
"operating": {
"carrierCode": "EY"
},
"duration": "PT4H20M",
"id": "54",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "AUH",
"terminal": "3",
"at": "2021-11-21T02:10:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "4",
"at": "2021-11-21T07:25:00"
},
"carrierCode": "EY",
"number": "75",
"aircraft": {
"code": "789"
},
"operating": {
"carrierCode": "EY"
},
"duration": "PT8H15M",
"id": "55",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "937.56",
"base": "649.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "937.56"
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": true
},
"validatingAirlineCodes": [
"EY"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "937.56",
"base": "649.00"
},
"fareDetailsBySegment": [
{
"segmentId": "54",
"cabin": "ECONOMY",
"fareBasis": "VRH2GR",
"brandedFare": "YH",
"class": "V",
"includedCheckedBags": {
"weight": 23,
"weightUnit": "KG"
}
},
{
"segmentId": "55",
"cabin": "ECONOMY",
"fareBasis": "KLC2ES",
"brandedFare": "YC",
"class": "K",
"includedCheckedBags": {
"weight": 23,
"weightUnit": "KG"
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "43",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2021-11-18",
"numberOfBookableSeats": 9,
"itineraries": [
{
"duration": "PT12H40M",
"segments": [
{
"departure": {
"iataCode": "ATH",
"at": "2021-11-20T19:25:00"
},
"arrival": {
"iataCode": "DOH",
"at": "2021-11-21T00:30:00"
},
"carrierCode": "QR",
"number": "208",
"aircraft": {
"code": "320"
},
"operating": {
"carrierCode": "QR"
},
"duration": "PT4H5M",
"id": "66",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "DOH",
"at": "2021-11-21T01:25:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "4S",
"at": "2021-11-21T07:05:00"
},
"carrierCode": "QR",
"number": "147",
"aircraft": {
"code": "359"
},
"operating": {
"carrierCode": "QR"
},
"duration": "PT7H40M",
"id": "67",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "976.89",
"base": "696.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "976.89"
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": true
},
"validatingAirlineCodes": [
"QR"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "976.89",
"base": "696.00"
},
"fareDetailsBySegment": [
{
"segmentId": "66",
"cabin": "ECONOMY",
"fareBasis": "NJR2R1RW",
"class": "N",
"includedCheckedBags": {
"weight": 25,
"weightUnit": "KG"
}
},
{
"segmentId": "67",
"cabin": "ECONOMY",
"fareBasis": "NJR7R1RW",
"class": "N",
"includedCheckedBags": {
"weight": 25,
"weightUnit": "KG"
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "44",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2021-11-18",
"numberOfBookableSeats": 9,
"itineraries": [
{
"duration": "PT18H55M",
"segments": [
{
"departure": {
"iataCode": "ATH",
"at": "2021-11-20T19:25:00"
},
"arrival": {
"iataCode": "DOH",
"at": "2021-11-21T00:30:00"
},
"carrierCode": "QR",
"number": "208",
"aircraft": {
"code": "320"
},
"operating": {
"carrierCode": "QR"
},
"duration": "PT4H5M",
"id": "90",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "DOH",
"at": "2021-11-21T07:40:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "4S",
"at": "2021-11-21T13:20:00"
},
"carrierCode": "QR",
"number": "149",
"aircraft": {
"code": "359"
},
"operating": {
"carrierCode": "QR"
},
"duration": "PT7H40M",
"id": "91",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "976.89",
"base": "696.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "976.89"
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": true
},
"validatingAirlineCodes": [
"QR"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "976.89",
"base": "696.00"
},
"fareDetailsBySegment": [
{
"segmentId": "90",
"cabin": "ECONOMY",
"fareBasis": "NJR2R1RW",
"class": "N",
"includedCheckedBags": {
"weight": 25,
"weightUnit": "KG"
}
},
{
"segmentId": "91",
"cabin": "ECONOMY",
"fareBasis": "NJR7R1RW",
"class": "N",
"includedCheckedBags": {
"weight": 25,
"weightUnit": "KG"
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "45",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2021-11-18",
"numberOfBookableSeats": 9,
"itineraries": [
{
"duration": "PT19H",
"segments": [
{
"departure": {
"iataCode": "ATH",
"at": "2021-11-20T13:05:00"
},
"arrival": {
"iataCode": "DOH",
"at": "2021-11-20T18:10:00"
},
"carrierCode": "QR",
"number": "204",
"aircraft": {
"code": "788"
},
"operating": {
"carrierCode": "QR"
},
"duration": "PT4H5M",
"id": "1",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "DOH",
"at": "2021-11-21T01:25:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "4S",
"at": "2021-11-21T07:05:00"
},
"carrierCode": "QR",
"number": "147",
"aircraft": {
"code": "359"
},
"operating": {
"carrierCode": "QR"
},
"duration": "PT7H40M",
"id": "2",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "976.89",
"base": "696.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "976.89"
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": true
},
"validatingAirlineCodes": [
"QR"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "976.89",
"base": "696.00"
},
"fareDetailsBySegment": [
{
"segmentId": "1",
"cabin": "ECONOMY",
"fareBasis": "NJR2R1RW",
"class": "N",
"includedCheckedBags": {
"weight": 25,
"weightUnit": "KG"
}
},
{
"segmentId": "2",
"cabin": "ECONOMY",
"fareBasis": "NJR7R1RW",
"class": "N",
"includedCheckedBags": {
"weight": 25,
"weightUnit": "KG"
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "46",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2021-11-18",
"numberOfBookableSeats": 9,
"itineraries": [
{
"duration": "PT26H40M",
"segments": [
{
"departure": {
"iataCode": "ATH",
"at": "2021-11-20T19:25:00"
},
"arrival": {
"iataCode": "DOH",
"at": "2021-11-21T00:30:00"
},
"carrierCode": "QR",
"number": "208",
"aircraft": {
"code": "320"
},
"operating": {
"carrierCode": "QR"
},
"duration": "PT4H5M",
"id": "68",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "DOH",
"at": "2021-11-21T15:25:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "4S",
"at": "2021-11-21T21:05:00"
},
"carrierCode": "QR",
"number": "151",
"aircraft": {
"code": "788"
},
"operating": {
"carrierCode": "QR"
},
"duration": "PT7H40M",
"id": "69",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "979.85",
"base": "696.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "979.85"
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": true
},
"validatingAirlineCodes": [
"QR"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "979.85",
"base": "696.00"
},
"fareDetailsBySegment": [
{
"segmentId": "68",
"cabin": "ECONOMY",
"fareBasis": "NJR2R1RW",
"class": "N",
"includedCheckedBags": {
"weight": 25,
"weightUnit": "KG"
}
},
{
"segmentId": "69",
"cabin": "ECONOMY",
"fareBasis": "NJR7R1RW",
"class": "N",
"includedCheckedBags": {
"weight": 25,
"weightUnit": "KG"
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "47",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2021-11-20",
"numberOfBookableSeats": 9,
"itineraries": [
{
"duration": "PT7H10M",
"segments": [
{
"departure": {
"iataCode": "ATH",
"at": "2021-11-20T14:20:00"
},
"arrival": {
"iataCode": "FRA",
"terminal": "1",
"at": "2021-11-20T16:20:00"
},
"carrierCode": "LH",
"number": "1279",
"aircraft": {
"code": "321"
},
"operating": {
"carrierCode": "LH"
},
"duration": "PT3H",
"id": "18",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "FRA",
"at": "2021-11-20T18:00:00"
},
"arrival": {
"iataCode": "MAD",
"at": "2021-11-20T20:30:00"
},
"carrierCode": "6X",
"number": "9102",
"aircraft": {
"code": "320"
},
"operating": {
"carrierCode": "6X"
},
"duration": "PT2H30M",
"id": "19",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "1030.52",
"base": "934.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "1030.52",
"additionalServices": [
{
"amount": "64.00",
"type": "CHECKED_BAGS"
}
]
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": true
},
"validatingAirlineCodes": [
"6X"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "1030.52",
"base": "934.00"
},
"fareDetailsBySegment": [
{
"segmentId": "18",
"cabin": "ECONOMY",
"fareBasis": "YFF77WW",
"class": "Y",
"includedCheckedBags": {
"quantity": 1
}
},
{
"segmentId": "19",
"cabin": "ECONOMY",
"fareBasis": "YFF77WW",
"class": "M",
"includedCheckedBags": {
"quantity": 1
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "48",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2021-11-20",
"numberOfBookableSeats": 9,
"itineraries": [
{
"duration": "PT8H45M",
"segments": [
{
"departure": {
"iataCode": "ATH",
"at": "2021-11-20T14:25:00"
},
"arrival": {
"iataCode": "CDG",
"terminal": "2F",
"at": "2021-11-20T17:00:00"
},
"carrierCode": "AF",
"number": "1533",
"aircraft": {
"code": "320"
},
"operating": {
"carrierCode": "AF"
},
"duration": "PT3H35M",
"id": "72",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "ORY",
"terminal": "3",
"at": "2021-11-20T20:10:00"
},
"arrival": {
"iataCode": "MAD",
"terminal": "2",
"at": "2021-11-20T22:10:00"
},
"carrierCode": "UX",
"number": "1026",
"aircraft": {
"code": "73H"
},
"operating": {
"carrierCode": "UX"
},
"duration": "PT2H",
"id": "73",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "1157.84",
"base": "1104.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "1157.84"
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": true
},
"validatingAirlineCodes": [
"AF"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "1157.84",
"base": "1104.00"
},
"fareDetailsBySegment": [
{
"segmentId": "72",
"cabin": "ECONOMY",
"fareBasis": "YS40BENN",
"class": "Y",
"includedCheckedBags": {
"quantity": 1
}
},
{
"segmentId": "73",
"cabin": "ECONOMY",
"fareBasis": "YS40BENN",
"class": "L",
"includedCheckedBags": {
"quantity": 1
}
}
]
}
]
},
{
"type": "flight-offer",
"id": "49",
"source": "GDS",
"instantTicketingRequired": false,
"nonHomogeneous": false,
"oneWay": false,
"lastTicketingDate": "2021-11-20",
"numberOfBookableSeats": 9,
"itineraries": [
{
"duration": "PT9H30M",
"segments": [
{
"departure": {
"iataCode": "ATH",
"at": "2021-11-20T06:10:00"
},
"arrival": {
"iataCode": "CDG",
"terminal": "2F",
"at": "2021-11-20T08:50:00"
},
"carrierCode": "AF",
"number": "1033",
"aircraft": {
"code": "320"
},
"operating": {
"carrierCode": "AF"
},
"duration": "PT3H40M",
"id": "50",
"numberOfStops": 0,
"blacklistedInEU": false
},
{
"departure": {
"iataCode": "CDG",
"terminal": "1",
"at": "2021-11-20T12:35:00"
},
"arrival": {
"iataCode": "MAD",
"at": "2021-11-20T14:40:00"
},
"carrierCode": "6X",
"number": "1199",
"aircraft": {
"code": "319"
},
"operating": {
"carrierCode": "6X"
},
"duration": "PT2H5M",
"id": "51",
"numberOfStops": 0,
"blacklistedInEU": false
}
]
}
],
"price": {
"currency": "EUR",
"total": "1303.23",
"base": "1104.00",
"fees": [
{
"amount": "0.00",
"type": "SUPPLIER"
},
{
"amount": "0.00",
"type": "TICKETING"
}
],
"grandTotal": "1303.23"
},
"pricingOptions": {
"fareType": [
"PUBLISHED"
],
"includedCheckedBagsOnly": true
},
"validatingAirlineCodes": [
"6X"
],
"travelerPricings": [
{
"travelerId": "1",
"fareOption": "STANDARD",
"travelerType": "ADULT",
"price": {
"currency": "EUR",
"total": "1303.23",
"base": "1104.00"
},
"fareDetailsBySegment": [
{
"segmentId": "50",
"cabin": "ECONOMY",
"fareBasis": "YS40BENN",
"class": "Y",
"includedCheckedBags": {
"quantity": 1
}
},
{
"segmentId": "51",
"cabin": "ECONOMY",
"fareBasis": "YS40BENN",
"class": "M",
"includedCheckedBags": {
"quantity": 1
}
}
]
}
]
}
],
"dictionaries": {
"locations": {
"CDG": {
"cityCode": "PAR",
"countryCode": "FR"
},
"AMS": {
"cityCode": "AMS",
"countryCode": "NL"
},
"OTP": {
"cityCode": "BUH",
"countryCode": "RO"
},
"CAI": {
"cityCode": "CAI",
"countryCode": "EG"
},
"IST": {
"cityCode": "IST",
"countryCode": "TR"
},
"DXB": {
"cityCode": "DXB",
"countryCode": "AE"
},
"MAD": {
"cityCode": "MAD",
"countryCode": "ES"
},
"ZRH": {
"cityCode": "ZRH",
"countryCode": "CH"
},
"AUH": {
"cityCode": "AUH",
"countryCode": "AE"
},
"FRA": {
"cityCode": "FRA",
"countryCode": "DE"
},
"ATH": {
"cityCode": "ATH",
"countryCode": "GR"
},
"ORY": {
"cityCode": "PAR",
"countryCode": "FR"
},
"MUC": {
"cityCode": "MUC",
"countryCode": "DE"
},
"DOH": {
"cityCode": "DOH",
"countryCode": "QA"
}
},
"aircraft": {
"73H": "BOEING 737-800 (WINGLETS)",
"73J": "BOEING 737-900",
"32N": "AIRBUS A320NEO",
"320": "AIRBUS A320",
"221": "AIRBUS A220-100",
"321": "AIRBUS A321",
"223": "AIRBUS A220-300",
"77W": "BOEING 777-300ER",
"359": "AIRBUS A350-900",
"788": "BOEING 787-8",
"789": "BOEING 787-9",
"318": "AIRBUS A318",
"73W": "BOEING 737-700 (WINGLETS)",
"319": "AIRBUS A319",
"738": "BOEING 737-800"
},
"currencies": {
"EUR": "EURO"
},
"carriers": {
"KL": "KLM ROYAL DUTCH AIRLINES",
"QR": "QATAR AIRWAYS",
"6X": "AMADEUS SIX",
"UX": "AIR EUROPA",
"AF": "AIR FRANCE",
"MS": "EGYPTAIR",
"EK": "EMIRATES",
"LX": "SWISS INTERNATIONAL AIR LINES",
"EY": "ETIHAD AIRWAYS",
"TK": "TURKISH AIRLINES",
"IB": "IBERIA",
"LH": "LUFTHANSA",
"RO": "TAROM"
}
}

Flight Inspiration
Add folder description…

AuthorizationBearer Token
This folder is using an authorization helper from folder Flights

GETFlight Inspiration Search


Open request
[Link]
The Flight Inspiration Search REST/JSON API enables you get a list of destinations from a given
origin (city or airport) and the cheapest price for each one. The API can tell you the price of flying
from a given origin to some destination, for a trip of a given duration, that falls within a given date
range.
AuthorizationBearer Token
This request is using an authorization helper from folder Flights

Query Params
departureDate
origin
BOS

Example

Flight Inspiration Search

Request

View More

NodeJs - Axios

const axios = require('axios');

let config = {
method: 'get',
maxBodyLength: Infinity,
url: '[Link]
headers: { }
};

[Link](config)
.then((response) => {
[Link]([Link]([Link]));
})
.catch((error) => {
[Link](error);
});

200 OK

Response

Body
Headers (13)
View More

json
{
"data": [
{
"type": "flight-destination",
"origin": "BOS",
"destination": "MIA",
"departureDate": "2021-03-08",
"returnDate": "2021-03-09",
"price": {
"total": "58.79"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=MIA&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=MIA&departureDate=2021-03-
08&returnDate=2021-03-09&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "CHI",
"departureDate": "2021-03-29",
"returnDate": "2021-03-30",
"price": {
"total": "84.81"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=CHI&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=CHI&departureDate=2021-03-
29&returnDate=2021-03-30&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "ORD",
"departureDate": "2021-03-30",
"returnDate": "2021-04-05",
"price": {
"total": "84.81"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=ORD&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=ORD&departureDate=2021-03-
30&returnDate=2021-04-05&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "BWI",
"departureDate": "2021-04-20",
"returnDate": "2021-04-21",
"price": {
"total": "86.79"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=BWI&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=BWI&departureDate=2021-04-
20&returnDate=2021-04-21&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "EWR",
"departureDate": "2021-04-20",
"returnDate": "2021-04-26",
"price": {
"total": "86.79"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=EWR&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=EWR&departureDate=2021-04-
20&returnDate=2021-04-26&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "NYC",
"departureDate": "2021-04-15",
"returnDate": "2021-04-19",
"price": {
"total": "86.79"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=NYC&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=NYC&departureDate=2021-04-
15&returnDate=2021-04-19&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "WAS",
"departureDate": "2021-04-26",
"returnDate": "2021-04-27",
"price": {
"total": "86.79"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=WAS&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=WAS&departureDate=2021-04-
26&returnDate=2021-04-27&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "FLL",
"departureDate": "2021-03-01",
"returnDate": "2021-03-08",
"price": {
"total": "86.81"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=FLL&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=FLL&departureDate=2021-03-
01&returnDate=2021-03-08&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "JFK",
"departureDate": "2021-03-08",
"returnDate": "2021-03-10",
"price": {
"total": "96.80"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=JFK&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=JFK&departureDate=2021-03-
08&returnDate=2021-03-10&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "MCO",
"departureDate": "2021-03-15",
"returnDate": "2021-03-16",
"price": {
"total": "96.80"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=MCO&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=MCO&departureDate=2021-03-
15&returnDate=2021-03-16&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "ORL",
"departureDate": "2021-03-15",
"returnDate": "2021-03-16",
"price": {
"total": "96.80"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=ORL&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=ORL&departureDate=2021-03-
15&returnDate=2021-03-16&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "PHL",
"departureDate": "2021-04-07",
"returnDate": "2021-04-12",
"price": {
"total": "96.80"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=PHL&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=PHL&departureDate=2021-04-
07&returnDate=2021-04-12&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "RSW",
"departureDate": "2021-02-23",
"returnDate": "2021-03-01",
"price": {
"total": "96.80"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=RSW&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=RSW&departureDate=2021-02-
23&returnDate=2021-03-01&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "TPA",
"departureDate": "2021-03-11",
"returnDate": "2021-03-15",
"price": {
"total": "96.80"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=TPA&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=TPA&departureDate=2021-03-
11&returnDate=2021-03-15&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "DCA",
"departureDate": "2021-04-13",
"returnDate": "2021-04-14",
"price": {
"total": "98.80"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=DCA&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=DCA&departureDate=2021-04-
13&returnDate=2021-04-14&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "IAD",
"departureDate": "2021-03-11",
"returnDate": "2021-03-15",
"price": {
"total": "98.80"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=IAD&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=IAD&departureDate=2021-03-
11&returnDate=2021-03-15&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "DFW",
"departureDate": "2021-04-19",
"returnDate": "2021-04-20",
"price": {
"total": "112.80"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=DFW&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=DFW&departureDate=2021-04-
19&returnDate=2021-04-20&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "ATL",
"departureDate": "2021-04-14",
"returnDate": "2021-04-19",
"price": {
"total": "114.78"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=ATL&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=ATL&departureDate=2021-04-
14&returnDate=2021-04-19&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "MSY",
"departureDate": "2021-04-14",
"returnDate": "2021-04-15",
"price": {
"total": "114.78"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=MSY&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=MSY&departureDate=2021-04-
14&returnDate=2021-04-15&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "MYR",
"departureDate": "2021-02-22",
"returnDate": "2021-02-25",
"price": {
"total": "114.78"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=MYR&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=MYR&departureDate=2021-02-
22&returnDate=2021-02-25&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "MSP",
"departureDate": "2021-04-22",
"returnDate": "2021-04-26",
"price": {
"total": "116.80"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=MSP&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=MSP&departureDate=2021-04-
22&returnDate=2021-04-26&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "SJU",
"departureDate": "2021-03-15",
"returnDate": "2021-03-16",
"price": {
"total": "120.38"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=SJU&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=SJU&departureDate=2021-03-
15&returnDate=2021-03-16&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "CLT",
"departureDate": "2021-04-14",
"returnDate": "2021-04-20",
"price": {
"total": "120.88"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=CLT&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=CLT&departureDate=2021-04-
14&returnDate=2021-04-20&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "LAS",
"departureDate": "2021-04-14",
"returnDate": "2021-04-19",
"price": {
"total": "122.78"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=LAS&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=LAS&departureDate=2021-04-
14&returnDate=2021-04-19&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "JAX",
"departureDate": "2021-04-05",
"returnDate": "2021-04-06",
"price": {
"total": "126.80"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=JAX&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=JAX&departureDate=2021-04-
05&returnDate=2021-04-06&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "AUS",
"departureDate": "2021-03-04",
"returnDate": "2021-03-06",
"price": {
"total": "146.40"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=AUS&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=AUS&departureDate=2021-03-
04&returnDate=2021-03-06&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "RDU",
"departureDate": "2021-03-09",
"returnDate": "2021-03-16",
"price": {
"total": "156.79"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=RDU&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=RDU&departureDate=2021-03-
09&returnDate=2021-03-16&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "BNA",
"departureDate": "2021-04-16",
"returnDate": "2021-04-20",
"price": {
"total": "162.37"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=BNA&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=BNA&departureDate=2021-04-
16&returnDate=2021-04-20&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "DEN",
"departureDate": "2021-04-15",
"returnDate": "2021-04-19",
"price": {
"total": "162.37"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=DEN&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=DEN&departureDate=2021-04-
15&returnDate=2021-04-19&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "STT",
"departureDate": "2021-03-01",
"returnDate": "2021-03-02",
"price": {
"total": "167.32"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=STT&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=STT&departureDate=2021-03-
01&returnDate=2021-03-02&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "PBI",
"departureDate": "2021-03-08",
"returnDate": "2021-03-09",
"price": {
"total": "171.39"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=PBI&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=PBI&departureDate=2021-03-
08&returnDate=2021-03-09&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "LAX",
"departureDate": "2021-02-24",
"returnDate": "2021-03-01",
"price": {
"total": "174.41"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=LAX&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=LAX&departureDate=2021-02-
24&returnDate=2021-03-01&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "CHS",
"departureDate": "2021-04-06",
"returnDate": "2021-04-13",
"price": {
"total": "186.80"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=CHS&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=CHS&departureDate=2021-04-
06&returnDate=2021-04-13&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "CUN",
"departureDate": "2021-03-04",
"returnDate": "2021-03-11",
"price": {
"total": "187.56"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=CUN&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=CUN&departureDate=2021-03-
04&returnDate=2021-03-11&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "PHX",
"departureDate": "2021-04-26",
"returnDate": "2021-04-29",
"price": {
"total": "188.41"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=PHX&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=PHX&departureDate=2021-04-
26&returnDate=2021-04-29&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "HOU",
"departureDate": "2021-04-16",
"returnDate": "2021-04-20",
"price": {
"total": "190.36"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=HOU&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=HOU&departureDate=2021-04-
16&returnDate=2021-04-20&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "IAH",
"departureDate": "2021-04-14",
"returnDate": "2021-04-15",
"price": {
"total": "190.36"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=IAH&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=IAH&departureDate=2021-04-
14&returnDate=2021-04-15&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "SAN",
"departureDate": "2021-04-14",
"returnDate": "2021-04-19",
"price": {
"total": "190.36"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=SAN&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=SAN&departureDate=2021-04-
14&returnDate=2021-04-19&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "SRQ",
"departureDate": "2021-02-20",
"returnDate": "2021-02-27",
"price": {
"total": "196.20"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=SRQ&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=SRQ&departureDate=2021-02-
20&returnDate=2021-02-27&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "SEA",
"departureDate": "2021-03-08",
"returnDate": "2021-03-09",
"price": {
"total": "196.80"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=SEA&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=SEA&departureDate=2021-03-
08&returnDate=2021-03-09&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "SAV",
"departureDate": "2021-04-07",
"returnDate": "2021-04-13",
"price": {
"total": "212.20"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=SAV&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=SAV&departureDate=2021-04-
07&returnDate=2021-04-13&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "SLC",
"departureDate": "2021-03-22",
"returnDate": "2021-03-23",
"price": {
"total": "218.80"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=SLC&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=SLC&departureDate=2021-03-
22&returnDate=2021-03-23&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "YTO",
"departureDate": "2021-02-15",
"returnDate": "2021-02-16",
"price": {
"total": "225.85"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=YTO&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=YTO&departureDate=2021-02-
15&returnDate=2021-02-16&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "PDX",
"departureDate": "2021-04-26",
"returnDate": "2021-04-27",
"price": {
"total": "226.36"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=PDX&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=PDX&departureDate=2021-04-
26&returnDate=2021-04-27&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "PUJ",
"departureDate": "2021-04-19",
"returnDate": "2021-04-26",
"price": {
"total": "228.45"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=PUJ&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=PUJ&departureDate=2021-04-
19&returnDate=2021-04-26&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "YYZ",
"departureDate": "2021-05-09",
"returnDate": "2021-05-10",
"price": {
"total": "234.38"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=YYZ&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=YYZ&departureDate=2021-05-
09&returnDate=2021-05-10&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "SFO",
"departureDate": "2021-03-31",
"returnDate": "2021-04-08",
"price": {
"total": "236.79"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=SFO&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=SFO&departureDate=2021-03-
31&returnDate=2021-04-08&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "BOG",
"departureDate": "2021-03-11",
"returnDate": "2021-03-16",
"price": {
"total": "263.75"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=BOG&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=BOG&departureDate=2021-03-
11&returnDate=2021-03-16&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "GUA",
"departureDate": "2021-04-19",
"returnDate": "2021-04-26",
"price": {
"total": "266.43"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=GUA&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=GUA&departureDate=2021-04-
19&returnDate=2021-04-26&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "AUA",
"departureDate": "2021-03-01",
"returnDate": "2021-03-11",
"price": {
"total": "272.35"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=AUA&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=AUA&departureDate=2021-03-
01&returnDate=2021-03-11&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "MEX",
"departureDate": "2021-03-04",
"returnDate": "2021-03-05",
"price": {
"total": "273.30"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=MEX&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=MEX&departureDate=2021-03-
04&returnDate=2021-03-05&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "SAL",
"departureDate": "2021-04-13",
"returnDate": "2021-04-15",
"price": {
"total": "274.98"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=SAL&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=SAL&departureDate=2021-04-
13&returnDate=2021-04-15&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "LIM",
"departureDate": "2021-06-01",
"returnDate": "2021-06-02",
"price": {
"total": "277.39"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=LIM&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=LIM&departureDate=2021-06-
01&returnDate=2021-06-02&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "NAS",
"departureDate": "2021-02-15",
"returnDate": "2021-02-17",
"price": {
"total": "279.89"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=NAS&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=NAS&departureDate=2021-02-
15&returnDate=2021-02-17&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "SDQ",
"departureDate": "2021-03-10",
"returnDate": "2021-03-15",
"price": {
"total": "280.95"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=SDQ&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=SDQ&departureDate=2021-03-
10&returnDate=2021-03-15&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "SJO",
"departureDate": "2021-03-01",
"returnDate": "2021-03-08",
"price": {
"total": "285.33"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=SJO&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=SJO&departureDate=2021-03-
01&returnDate=2021-03-08&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "BDA",
"departureDate": "2021-06-01",
"returnDate": "2021-06-07",
"price": {
"total": "295.43"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=BDA&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=BDA&departureDate=2021-06-
01&returnDate=2021-06-07&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "MDE",
"departureDate": "2021-03-29",
"returnDate": "2021-04-06",
"price": {
"total": "300.85"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=MDE&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=MDE&departureDate=2021-03-
29&returnDate=2021-04-06&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "YVR",
"departureDate": "2021-02-22",
"returnDate": "2021-02-23",
"price": {
"total": "301.00"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=YVR&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=YVR&departureDate=2021-02-
22&returnDate=2021-02-23&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "MBJ",
"departureDate": "2021-03-01",
"returnDate": "2021-03-02",
"price": {
"total": "311.29"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=MBJ&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=MBJ&departureDate=2021-03-
01&returnDate=2021-03-02&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "UIO",
"departureDate": "2021-04-27",
"returnDate": "2021-05-03",
"price": {
"total": "313.42"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=UIO&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=UIO&departureDate=2021-04-
27&returnDate=2021-05-03&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "PLS",
"departureDate": "2021-03-27",
"returnDate": "2021-04-03",
"price": {
"total": "321.25"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=PLS&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=PLS&departureDate=2021-03-
27&returnDate=2021-04-03&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "PAP",
"departureDate": "2021-03-15",
"returnDate": "2021-03-18",
"price": {
"total": "324.19"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=PAP&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=PAP&departureDate=2021-03-
15&returnDate=2021-03-18&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "REK",
"departureDate": "2021-02-19",
"returnDate": "2021-02-24",
"price": {
"total": "327.67"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=REK&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=REK&departureDate=2021-02-
19&returnDate=2021-02-24&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "PTY",
"departureDate": "2021-03-08",
"returnDate": "2021-03-16",
"price": {
"total": "330.35"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=PTY&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=PTY&departureDate=2021-03-
08&returnDate=2021-03-16&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "STI",
"departureDate": "2021-03-08",
"returnDate": "2021-03-10",
"price": {
"total": "344.45"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=STI&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=STI&departureDate=2021-03-
08&returnDate=2021-03-10&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "KEF",
"departureDate": "2021-03-15",
"returnDate": "2021-03-22",
"price": {
"total": "353.65"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=KEF&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=KEF&departureDate=2021-03-
15&returnDate=2021-03-22&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "GRU",
"departureDate": "2021-04-06",
"returnDate": "2021-04-07",
"price": {
"total": "378.38"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=GRU&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=GRU&departureDate=2021-04-
06&returnDate=2021-04-07&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "SAO",
"departureDate": "2021-04-06",
"returnDate": "2021-04-07",
"price": {
"total": "378.38"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=SAO&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=SAO&departureDate=2021-04-
06&returnDate=2021-04-07&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "BRU",
"departureDate": "2021-04-07",
"returnDate": "2021-04-15",
"price": {
"total": "386.30"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=BRU&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=BRU&departureDate=2021-04-
07&returnDate=2021-04-15&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "BER",
"departureDate": "2021-02-22",
"returnDate": "2021-03-02",
"price": {
"total": "390.50"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=BER&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=BER&departureDate=2021-02-
22&returnDate=2021-03-02&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "PDL",
"departureDate": "2021-03-12",
"returnDate": "2021-03-18",
"price": {
"total": "404.21"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=PDL&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=PDL&departureDate=2021-03-
12&returnDate=2021-03-18&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "DUB",
"departureDate": "2021-04-05",
"returnDate": "2021-04-13",
"price": {
"total": "415.37"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=DUB&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=DUB&departureDate=2021-04-
05&returnDate=2021-04-13&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "CDG",
"departureDate": "2021-03-30",
"returnDate": "2021-04-06",
"price": {
"total": "415.59"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=CDG&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=CDG&departureDate=2021-03-
30&returnDate=2021-04-06&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "PAR",
"departureDate": "2021-03-30",
"returnDate": "2021-04-06",
"price": {
"total": "415.59"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=PAR&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=PAR&departureDate=2021-03-
30&returnDate=2021-04-06&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "HNL",
"departureDate": "2021-05-03",
"returnDate": "2021-05-04",
"price": {
"total": "417.16"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=HNL&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=HNL&departureDate=2021-05-
03&returnDate=2021-05-04&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "CPH",
"departureDate": "2021-03-29",
"returnDate": "2021-04-02",
"price": {
"total": "424.69"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=CPH&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=CPH&departureDate=2021-03-
29&returnDate=2021-04-02&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "AMS",
"departureDate": "2021-03-15",
"returnDate": "2021-03-23",
"price": {
"total": "426.02"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=AMS&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=AMS&departureDate=2021-03-
15&returnDate=2021-03-23&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "ZRH",
"departureDate": "2021-03-31",
"returnDate": "2021-04-05",
"price": {
"total": "437.00"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=ZRH&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=ZRH&departureDate=2021-03-
31&returnDate=2021-04-05&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "LON",
"departureDate": "2021-03-22",
"returnDate": "2021-03-26",
"price": {
"total": "451.39"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=LON&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=LON&departureDate=2021-03-
22&returnDate=2021-03-26&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "LGW",
"departureDate": "2021-03-31",
"returnDate": "2021-04-06",
"price": {
"total": "453.19"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=LGW&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=LGW&departureDate=2021-03-
31&returnDate=2021-04-06&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "MAN",
"departureDate": "2021-03-24",
"returnDate": "2021-04-01",
"price": {
"total": "458.49"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=MAN&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=MAN&departureDate=2021-03-
24&returnDate=2021-04-01&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "CWB",
"departureDate": "2021-02-27",
"returnDate": "2021-03-02",
"price": {
"total": "465.05"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=CWB&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=CWB&departureDate=2021-02-
27&returnDate=2021-03-02&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "LHR",
"departureDate": "2021-03-24",
"returnDate": "2021-03-29",
"price": {
"total": "467.28"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=LHR&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=LHR&departureDate=2021-03-
24&returnDate=2021-03-29&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "MUC",
"departureDate": "2021-03-29",
"returnDate": "2021-04-05",
"price": {
"total": "487.17"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=MUC&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=MUC&departureDate=2021-03-
29&returnDate=2021-04-05&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "FRA",
"departureDate": "2021-03-25",
"returnDate": "2021-03-29",
"price": {
"total": "488.32"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=FRA&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=FRA&departureDate=2021-03-
25&returnDate=2021-03-29&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "OPO",
"departureDate": "2021-04-01",
"returnDate": "2021-04-15",
"price": {
"total": "504.51"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=OPO&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=OPO&departureDate=2021-04-
01&returnDate=2021-04-15&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "BCN",
"departureDate": "2021-04-02",
"returnDate": "2021-04-07",
"price": {
"total": "506.56"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=BCN&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=BCN&departureDate=2021-04-
02&returnDate=2021-04-07&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "GVA",
"departureDate": "2021-02-16",
"returnDate": "2021-02-23",
"price": {
"total": "519.33"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=GVA&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=GVA&departureDate=2021-02-
16&returnDate=2021-02-23&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "PRG",
"departureDate": "2021-05-12",
"returnDate": "2021-05-18",
"price": {
"total": "523.77"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=PRG&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=PRG&departureDate=2021-05-
12&returnDate=2021-05-18&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "NAP",
"departureDate": "2021-04-10",
"returnDate": "2021-04-19",
"price": {
"total": "525.76"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=NAP&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=NAP&departureDate=2021-04-
10&returnDate=2021-04-19&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "VCE",
"departureDate": "2021-04-06",
"returnDate": "2021-04-12",
"price": {
"total": "526.08"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=VCE&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=VCE&departureDate=2021-04-
06&returnDate=2021-04-12&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "MIL",
"departureDate": "2021-04-26",
"returnDate": "2021-05-04",
"price": {
"total": "526.14"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=MIL&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=MIL&departureDate=2021-04-
26&returnDate=2021-05-04&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "RAI",
"departureDate": "2021-03-02",
"returnDate": "2021-03-11",
"price": {
"total": "529.08"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=RAI&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=RAI&departureDate=2021-03-
02&returnDate=2021-03-11&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "SNN",
"departureDate": "2021-08-06",
"returnDate": "2021-08-16",
"price": {
"total": "542.72"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=SNN&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=SNN&departureDate=2021-08-
06&returnDate=2021-08-16&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "VIE",
"departureDate": "2021-05-02",
"returnDate": "2021-05-10",
"price": {
"total": "543.27"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=VIE&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=VIE&departureDate=2021-05-
02&returnDate=2021-05-10&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "FCO",
"departureDate": "2021-05-03",
"returnDate": "2021-05-10",
"price": {
"total": "544.28"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=FCO&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=FCO&departureDate=2021-05-
03&returnDate=2021-05-10&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "ROM",
"departureDate": "2021-03-29",
"returnDate": "2021-04-05",
"price": {
"total": "544.28"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=ROM&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=ROM&departureDate=2021-03-
29&returnDate=2021-04-05&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "LIS",
"departureDate": "2021-06-16",
"returnDate": "2021-06-21",
"price": {
"total": "546.29"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=LIS&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=LIS&departureDate=2021-06-
16&returnDate=2021-06-21&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "CAI",
"departureDate": "2021-02-14",
"returnDate": "2021-02-17",
"price": {
"total": "556.11"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=CAI&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=CAI&departureDate=2021-02-
14&returnDate=2021-02-17&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "TYO",
"departureDate": "2021-05-03",
"returnDate": "2021-05-05",
"price": {
"total": "559.26"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=TYO&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=TYO&departureDate=2021-05-
03&returnDate=2021-05-05&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "MAD",
"departureDate": "2021-04-05",
"returnDate": "2021-04-13",
"price": {
"total": "562.50"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=MAD&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=MAD&departureDate=2021-04-
05&returnDate=2021-04-13&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "NCE",
"departureDate": "2021-05-11",
"returnDate": "2021-05-19",
"price": {
"total": "569.99"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=NCE&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=NCE&departureDate=2021-05-
11&returnDate=2021-05-19&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "EDI",
"departureDate": "2021-05-26",
"returnDate": "2021-06-09",
"price": {
"total": "597.11"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=EDI&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=EDI&departureDate=2021-05-
26&returnDate=2021-06-09&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "WAW",
"departureDate": "2021-04-06",
"returnDate": "2021-04-12",
"price": {
"total": "599.33"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=WAW&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=WAW&departureDate=2021-04-
06&returnDate=2021-04-12&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "FLR",
"departureDate": "2021-05-08",
"returnDate": "2021-05-13",
"price": {
"total": "607.25"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=FLR&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=FLR&departureDate=2021-05-
08&returnDate=2021-05-13&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "NBO",
"departureDate": "2021-02-19",
"returnDate": "2021-02-21",
"price": {
"total": "613.13"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=NBO&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=NBO&departureDate=2021-02-
19&returnDate=2021-02-21&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "ATH",
"departureDate": "2021-03-26",
"returnDate": "2021-03-30",
"price": {
"total": "627.07"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=ATH&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=ATH&departureDate=2021-03-
26&returnDate=2021-03-30&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "TLV",
"departureDate": "2021-05-04",
"returnDate": "2021-05-12",
"price": {
"total": "629.16"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=TLV&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=TLV&departureDate=2021-05-
04&returnDate=2021-05-12&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "DEL",
"departureDate": "2021-03-28",
"returnDate": "2021-04-08",
"price": {
"total": "637.84"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=DEL&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=DEL&departureDate=2021-03-
28&returnDate=2021-04-08&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "BOM",
"departureDate": "2021-03-24",
"returnDate": "2021-03-31",
"price": {
"total": "648.51"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=BOM&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=BOM&departureDate=2021-03-
24&returnDate=2021-03-31&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "BLR",
"departureDate": "2021-05-13",
"returnDate": "2021-05-15",
"price": {
"total": "656.03"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=BLR&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=BLR&departureDate=2021-05-
13&returnDate=2021-05-15&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "BEY",
"departureDate": "2021-03-04",
"returnDate": "2021-03-11",
"price": {
"total": "665.76"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=BEY&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=BEY&departureDate=2021-03-
04&returnDate=2021-03-11&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "HKG",
"departureDate": "2021-04-07",
"returnDate": "2021-04-12",
"price": {
"total": "676.58"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=HKG&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=HKG&departureDate=2021-04-
07&returnDate=2021-04-12&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "CMN",
"departureDate": "2021-08-09",
"returnDate": "2021-08-18",
"price": {
"total": "678.84"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=CMN&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=CMN&departureDate=2021-08-
09&returnDate=2021-08-18&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "DXB",
"departureDate": "2021-02-17",
"returnDate": "2021-02-24",
"price": {
"total": "689.50"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=DXB&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=DXB&departureDate=2021-02-
17&returnDate=2021-02-24&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "ACC",
"departureDate": "2021-05-16",
"returnDate": "2021-05-24",
"price": {
"total": "689.85"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=ACC&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=ACC&departureDate=2021-05-
16&returnDate=2021-05-24&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "MAA",
"departureDate": "2021-02-15",
"returnDate": "2021-02-24",
"price": {
"total": "705.50"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=MAA&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=MAA&departureDate=2021-02-
15&returnDate=2021-02-24&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "HYD",
"departureDate": "2021-02-19",
"returnDate": "2021-02-21",
"price": {
"total": "715.83"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=HYD&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=HYD&departureDate=2021-02-
19&returnDate=2021-02-21&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "LOS",
"departureDate": "2021-05-03",
"returnDate": "2021-05-10",
"price": {
"total": "726.29"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=LOS&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=LOS&departureDate=2021-05-
03&returnDate=2021-05-10&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "CPT",
"departureDate": "2021-02-17",
"returnDate": "2021-03-01",
"price": {
"total": "750.06"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=CPT&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=CPT&departureDate=2021-02-
17&returnDate=2021-03-01&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "MNL",
"departureDate": "2021-05-12",
"returnDate": "2021-05-20",
"price": {
"total": "769.41"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=MNL&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=MNL&departureDate=2021-05-
12&returnDate=2021-05-20&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "SIN",
"departureDate": "2021-05-07",
"returnDate": "2021-05-14",
"price": {
"total": "771.10"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=SIN&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=SIN&departureDate=2021-05-
07&returnDate=2021-05-14&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "JNB",
"departureDate": "2021-03-03",
"returnDate": "2021-03-06",
"price": {
"total": "772.28"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=JNB&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=JNB&departureDate=2021-03-
03&returnDate=2021-03-06&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "BJS",
"departureDate": "2021-05-11",
"returnDate": "2021-05-18",
"price": {
"total": "773.66"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=BJS&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=BJS&departureDate=2021-05-
11&returnDate=2021-05-18&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "SGN",
"departureDate": "2021-05-12",
"returnDate": "2021-05-19",
"price": {
"total": "773.97"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=SGN&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=SGN&departureDate=2021-05-
12&returnDate=2021-05-19&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "SHA",
"departureDate": "2021-05-11",
"returnDate": "2021-05-17",
"price": {
"total": "789.66"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=SHA&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=SHA&departureDate=2021-05-
11&returnDate=2021-05-17&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "BKK",
"departureDate": "2021-03-24",
"returnDate": "2021-04-06",
"price": {
"total": "798.98"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=BKK&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=BKK&departureDate=2021-03-
24&returnDate=2021-04-06&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "TIA",
"departureDate": "2021-02-21",
"returnDate": "2021-03-01",
"price": {
"total": "803.50"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=TIA&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=TIA&departureDate=2021-02-
21&returnDate=2021-03-01&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "IST",
"departureDate": "2021-02-25",
"returnDate": "2021-03-05",
"price": {
"total": "810.06"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=IST&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=IST&departureDate=2021-02-
25&returnDate=2021-03-05&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "TPE",
"departureDate": "2021-03-24",
"returnDate": "2021-03-29",
"price": {
"total": "828.16"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=TPE&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=TPE&departureDate=2021-03-
24&returnDate=2021-03-29&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "ICN",
"departureDate": "2021-03-30",
"returnDate": "2021-04-05",
"price": {
"total": "861.49"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=ICN&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=ICN&departureDate=2021-03-
30&returnDate=2021-04-05&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "MLE",
"departureDate": "2021-05-04",
"returnDate": "2021-05-10",
"price": {
"total": "977.29"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=MLE&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=MLE&departureDate=2021-05-
04&returnDate=2021-05-10&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "DPS",
"departureDate": "2021-05-11",
"returnDate": "2021-05-23",
"price": {
"total": "992.41"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=DPS&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=DPS&departureDate=2021-05-
11&returnDate=2021-05-23&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "PVG",
"departureDate": "2021-05-04",
"returnDate": "2021-05-10",
"price": {
"total": "1208.40"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=PVG&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=PVG&departureDate=2021-05-
04&returnDate=2021-05-10&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "SYD",
"departureDate": "2021-05-09",
"returnDate": "2021-05-16",
"price": {
"total": "1266.32"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=SYD&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=SYD&departureDate=2021-05-
09&returnDate=2021-05-16&adults=1&nonStop=false"
}
},
{
"type": "flight-destination",
"origin": "BOS",
"destination": "CAN",
"departureDate": "2021-04-25",
"returnDate": "2021-05-02",
"price": {
"total": "1427.25"
},
"links": {
"flightDates": "[Link]
origin=BOS&destination=CAN&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
"flightOffers": "[Link]
offers?originLocationCode=BOS&destinationLocationCode=CAN&departureDate=2021-04-
25&returnDate=2021-05-02&adults=1&nonStop=false"
}
}
],
"dictionaries": {
"currencies": {
"USD": "US DOLLAR"
},
"locations": {
"PVG": {
"subType": "AIRPORT",
"detailedName": "PUDONG INTL"
},
"JAX": {
"subType": "AIRPORT",
"detailedName": "JACKSONVILLE INTL"
},
"NAS": {
"subType": "AIRPORT",
"detailedName": "LYNDEN PINDLING INTL"
},
"BRU": {
"subType": "AIRPORT",
"detailedName": "BRUSSELS AIRPORT"
},
"CDG": {
"subType": "AIRPORT",
"detailedName": "CHARLES DE GAULLE"
},
"HNL": {
"subType": "AIRPORT",
"detailedName": "DANIEL K INOUYE INTL"
},
"STI": {
"subType": "AIRPORT",
"detailedName": "CIBAO INTL"
},
"BJS": {
"subType": "CITY",
"detailedName": "BEIJING"
},
"CLT": {
"subType": "AIRPORT",
"detailedName": "DOUGLAS INTL"
},
"SLC": {
"subType": "AIRPORT",
"detailedName": "SALT LAKE CITY INTL"
},
"ZRH": {
"subType": "AIRPORT",
"detailedName": "ZURICH AIRPORT"
},
"GUA": {
"subType": "AIRPORT",
"detailedName": "LA AURORA INTL"
},
"STT": {
"subType": "AIRPORT",
"detailedName": "CYRIL E. KING"
},
"DFW": {
"subType": "AIRPORT",
"detailedName": "DALLAS FT WORTH INTL"
},
"NBO": {
"subType": "AIRPORT",
"detailedName": "JOMO KENYATTA INTL"
},
"CUN": {
"subType": "AIRPORT",
"detailedName": "INTERNATIONAL"
},
"SDQ": {
"subType": "AIRPORT",
"detailedName": "LAS AMERICAS INTL"
},
"BKK": {
"subType": "AIRPORT",
"detailedName": "SUVARNABHUMI INTL"
},
"MIA": {
"subType": "AIRPORT",
"detailedName": "MIAMI INTL"
},
"CMN": {
"subType": "AIRPORT",
"detailedName": "MOHAMMED V"
},
"MYR": {
"subType": "AIRPORT",
"detailedName": "INTERNATIONAL"
},
"LON": {
"subType": "CITY",
"detailedName": "LONDON"
},
"BCN": {
"subType": "AIRPORT",
"detailedName": "AIRPORT"
},
"MAA": {
"subType": "AIRPORT",
"detailedName": "CHENNAI INTERNATIONAL"
},
"KEF": {
"subType": "AIRPORT",
"detailedName": "KEFLAVIK INTL"
},
"IAD": {
"subType": "AIRPORT",
"detailedName": "DULLES INTL"
},
"SEA": {
"subType": "AIRPORT",
"detailedName": "SEATTLE TACOMA INTL"
},
"DXB": {
"subType": "AIRPORT",
"detailedName": "DUBAI INTL"
},
"HOU": {
"subType": "AIRPORT",
"detailedName": "WILLIAM P HOBBY"
},
"LOS": {
"subType": "AIRPORT",
"detailedName": "MURTALA MUHAMMED INTL"
},
"NCE": {
"subType": "AIRPORT",
"detailedName": "COTE D AZUR"
},
"IAH": {
"subType": "AIRPORT",
"detailedName": "GEORGE BUSH INTERCONT"
},
"MIL": {
"subType": "CITY",
"detailedName": "MILAN"
},
"MAD": {
"subType": "AIRPORT",
"detailedName": "ADOLFO SUAREZ BARAJAS"
},
"GVA": {
"subType": "AIRPORT",
"detailedName": "GENEVA INTERNATIONAL"
},
"FCO": {
"subType": "AIRPORT",
"detailedName": "FIUMICINO"
},
"RSW": {
"subType": "AIRPORT",
"detailedName": "SOUTHWEST FLORIDA INTL"
},
"VCE": {
"subType": "AIRPORT",
"detailedName": "MARCO POLO"
},
"UIO": {
"subType": "AIRPORT",
"detailedName": "MARISCAL SUCRE INTL"
},
"YYZ": {
"subType": "AIRPORT",
"detailedName": "LESTER B. PEARSON INTL"
},
"MAN": {
"subType": "AIRPORT",
"detailedName": "MANCHESTER AIRPORT"
},
"LGW": {
"subType": "AIRPORT",
"detailedName": "GATWICK"
},
"BDA": {
"subType": "AIRPORT",
"detailedName": "L.F WADE INTERNATIONAL"
},
"TPA": {
"subType": "AIRPORT",
"detailedName": "TAMPA INTL"
},
"DPS": {
"subType": "AIRPORT",
"detailedName": "NGURAH RAI"
},
"FLL": {
"subType": "AIRPORT",
"detailedName": "FLL INTL"
},
"TPE": {
"subType": "AIRPORT",
"detailedName": "TAIWAN TAOYUAN INTL"
},
"BLR": {
"subType": "AIRPORT",
"detailedName": "KEMPEGOWDA INTL"
},
"FLR": {
"subType": "AIRPORT",
"detailedName": "PERETOLA"
},
"CWB": {
"subType": "AIRPORT",
"detailedName": "AFONSO PENA INTL"
},
"SNN": {
"subType": "AIRPORT",
"detailedName": "SHANNON"
},
"HYD": {
"subType": "AIRPORT",
"detailedName": "RAJIV GANDHI INTL"
},
"MBJ": {
"subType": "AIRPORT",
"detailedName": "SANGSTER INTL"
},
"PHL": {
"subType": "AIRPORT",
"detailedName": "PHILADELPHIA INTL"
},
"LHR": {
"subType": "AIRPORT",
"detailedName": "HEATHROW"
},
"SFO": {
"subType": "AIRPORT",
"detailedName": "SAN FRANCISCO INTL"
},
"PHX": {
"subType": "AIRPORT",
"detailedName": "SKY HARBOR INTL"
},
"ACC": {
"subType": "AIRPORT",
"detailedName": "KOTOKA INTL"
},
"RDU": {
"subType": "AIRPORT",
"detailedName": "INTERNATIONAL"
},
"IST": {
"subType": "AIRPORT",
"detailedName": "ISTANBUL AIRPORT"
},
"TYO": {
"subType": "CITY",
"detailedName": "TOKYO"
},
"MSP": {
"subType": "AIRPORT",
"detailedName": "ST PAUL INTL"
},
"TIA": {
"subType": "AIRPORT",
"detailedName": "NENE TEREZA INTL"
},
"BER": {
"subType": "AIRPORT",
"detailedName": "BRANDENBURG"
},
"LIM": {
"subType": "AIRPORT",
"detailedName": "JORGE CHAVEZ INTL"
},
"MSY": {
"subType": "AIRPORT",
"detailedName": "LOUIS ARMSTRONG INTL"
},
"BNA": {
"subType": "AIRPORT",
"detailedName": "INTERNATIONAL"
},
"ATH": {
"subType": "AIRPORT",
"detailedName": "ATHENS INT E VENIZELOS"
},
"ICN": {
"subType": "AIRPORT",
"detailedName": "INCHEON INTERNATIONAL"
},
"LIS": {
"subType": "AIRPORT",
"detailedName": "AIRPORT"
},
"BEY": {
"subType": "AIRPORT",
"detailedName": "RAFIC HARIRI INTL"
},
"MCO": {
"subType": "AIRPORT",
"detailedName": "ORLANDO INTL"
},
"ATL": {
"subType": "AIRPORT",
"detailedName": "HARTSFIELD-JACKSON INT"
},
"REK": {
"subType": "CITY",
"detailedName": "REYKJAVIK"
},
"CPH": {
"subType": "AIRPORT",
"detailedName": "KASTRUP"
},
"SGN": {
"subType": "AIRPORT",
"detailedName": "TAN SON NHAT INTL"
},
"PAP": {
"subType": "AIRPORT",
"detailedName": "TOUSSAINT LOUVERTURE"
},
"LAS": {
"subType": "AIRPORT",
"detailedName": "MCCARRAN INTERNATIONAL"
},
"JNB": {
"subType": "AIRPORT",
"detailedName": "O.R. TAMBO INTL"
},
"PAR": {
"subType": "CITY",
"detailedName": "PARIS"
},
"LAX": {
"subType": "AIRPORT",
"detailedName": "LOS ANGELES INTL"
},
"PRG": {
"subType": "AIRPORT",
"detailedName": "RUZYNE"
},
"CHI": {
"subType": "CITY",
"detailedName": "CHICAGO"
},
"CPT": {
"subType": "AIRPORT",
"detailedName": "CAPE TOWN INTL"
},
"MLE": {
"subType": "AIRPORT",
"detailedName": "VELANA INTERNATIONAL"
},
"EDI": {
"subType": "AIRPORT",
"detailedName": "AIRPORT"
},
"SHA": {
"subType": "AIRPORT",
"detailedName": "HONGQIAO INTL"
},
"AUA": {
"subType": "AIRPORT",
"detailedName": "REINA BEATRIX"
},
"JFK": {
"subType": "AIRPORT",
"detailedName": "JOHN F KENNEDY INTL"
},
"MDE": {
"subType": "AIRPORT",
"detailedName": "JOSE MARIA CORDOVA INT"
},
"OPO": {
"subType": "AIRPORT",
"detailedName": "FRANCISCO SA CARNEIRO"
},
"CHS": {
"subType": "AIRPORT",
"detailedName": "INTERNATIONAL AFB"
},
"BWI": {
"subType": "AIRPORT",
"detailedName": "BALTIMORE/WASH. INTL"
},
"YTO": {
"subType": "CITY",
"detailedName": "TORONTO"
},
"PBI": {
"subType": "AIRPORT",
"detailedName": "PALM BEACH INTL"
},
"MUC": {
"subType": "AIRPORT",
"detailedName": "MUNICH INTERNATIONAL"
},
"BOG": {
"subType": "AIRPORT",
"detailedName": "EL DORADO INTL"
},
"SYD": {
"subType": "AIRPORT",
"detailedName": "KINGSFORD SMITH"
},
"AUS": {
"subType": "AIRPORT",
"detailedName": "AUSTIN-BERGSTROM INTL"
},
"BOM": {
"subType": "AIRPORT",
"detailedName": "CHHATRAPATI S MAHARAJ"
},
"DCA": {
"subType": "AIRPORT",
"detailedName": "R REAGAN NAT"
},
"HKG": {
"subType": "AIRPORT",
"detailedName": "INTERNATIONAL"
},
"AMS": {
"subType": "AIRPORT",
"detailedName": "SCHIPHOL AIRPORT"
},
"BOS": {
"subType": "AIRPORT",
"detailedName": "EDWARD L LOGAN INTL"
},
"CAI": {
"subType": "AIRPORT",
"detailedName": "CAIRO INTL"
},
"ROM": {
"subType": "CITY",
"detailedName": "ROME"
},
"CAN": {
"subType": "AIRPORT",
"detailedName": "BAIYUN INTL"
},
"SIN": {
"subType": "AIRPORT",
"detailedName": "CHANGI"
},
"SAL": {
"subType": "AIRPORT",
"detailedName": "EL SALVADOR INTL"
},
"SAO": {
"subType": "CITY",
"detailedName": "SAO PAULO"
},
"ORD": {
"subType": "AIRPORT",
"detailedName": "O HARE INTERNATIONAL"
},
"MEX": {
"subType": "AIRPORT",
"detailedName": "BENITO JUAREZ INTL"
},
"SAN": {
"subType": "AIRPORT",
"detailedName": "INTERNATIONAL"
},
"ORL": {
"subType": "AIRPORT",
"detailedName": "EXECUTIVE"
},
"WAS": {
"subType": "CITY",
"detailedName": "WASHINGTON"
},
"SAV": {
"subType": "AIRPORT",
"detailedName": "HILTON HEAD INTL"
},
"MNL": {
"subType": "AIRPORT",
"detailedName": "NINOY AQUINO INTL"
},
"GRU": {
"subType": "AIRPORT",
"detailedName": "GUARULHOS INTL"
},
"WAW": {
"subType": "AIRPORT",
"detailedName": "FREDERIC CHOPIN"
},
"DUB": {
"subType": "AIRPORT",
"detailedName": "DUBLIN INTERNATIONAL"
},
"SRQ": {
"subType": "AIRPORT",
"detailedName": "INTERNATIONAL"
},
"PTY": {
"subType": "AIRPORT",
"detailedName": "TOCUMEN INTL"
},
"YVR": {
"subType": "AIRPORT",
"detailedName": "INTERNATIONAL"
},
"PLS": {
"subType": "AIRPORT",
"detailedName": "PROVIDENCIALES"
},
"SJO": {
"subType": "AIRPORT",
"detailedName": "JUAN SANTAMARIA INTL"
},
"NYC": {
"subType": "CITY",
"detailedName": "NEW YORK"
},
"PDL": {
"subType": "AIRPORT",
"detailedName": "JOAO PAULO II"
},
"TLV": {
"subType": "AIRPORT",
"detailedName": "BEN GURION INTL"
},
"SJU": {
"subType": "AIRPORT",
"detailedName": "LUIS MUNOZ MARIN INTL"
},
"EWR": {
"subType": "AIRPORT",
"detailedName": "NEWARK LIBERTY INTL"
},
"PUJ": {
"subType": "AIRPORT",
"detailedName": "INTERNATIONAL"
},
"PDX": {
"subType": "AIRPORT",
"detailedName": "PORTLAND INTL"
},
"DEL": {
"subType": "AIRPORT",
"detailedName": "INDIRA GANDHI INTL"
},
"DEN": {
"subType": "AIRPORT",
"detailedName": "DENVER INTERNATIONAL"
},
"VIE": {
"subType": "AIRPORT",
"detailedName": "SCHWECHAT INTL"
},
"FRA": {
"subType": "AIRPORT",
"detailedName": "FRANKFURT INTL"
},
"RAI": {
"subType": "AIRPORT",
"detailedName": "PRAIA INTL"
},
"NAP": {
"subType": "AIRPORT",
"detailedName": "CAPODICHINO AIRPORT"
}
}
},
"meta": {
"currency": "USD",
"links": {
"self": "[Link]
origin=BOS&departureDate=2021-02-13,2021-08-
11&oneWay=false&duration=1,15&nonStop=false&viewBy=DESTINATION"
},
"defaults": {
"departureDate": "2021-02-13,2021-08-11",
"oneWay": false,
"duration": "1,15",
"nonStop": false,
"viewBy": "DESTINATION"
}
}

GETFlight Cheapest Date Search


Open request
[Link]
origin=MAD&destination=LON&departureDate=
The Flight Cheapest Date Search REST/JSON API is an open search API that enables you to find the
cheapest dates to a given city or airport.

The API returns a list of flight-date options containing the flight dates and the flight price. Links to the
Flight Low-fare Search API are also provided to allow you to confirm the price and availability of the
fare.

AuthorizationBearer Token
This request is using an authorization helper from folder Flights

Query Params
origin
MAD
destination
LON
departureDate

Example

Flight Cheapest Date Search


Request

View More

NodeJs - Axios

const axios = require('axios');


const FormData = require('form-data');
let data = new FormData();

let config = {
method: 'get',
maxBodyLength: Infinity,
url: '[Link]
origin=NCE&destination=PAR&duration=1',
headers: {
...[Link]()
},
data : data
};

[Link](config)
.then((response) => {
[Link]([Link]([Link]));
})
.catch((error) => {
[Link](error);
});

200 OK

Response

Body
Headers (13)

View More

json
{"data":[{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-04-
06","returnDate":"2018-04-07","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-04-06&returnDate=2018-04-
07&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-05-
25","returnDate":"2018-05-26","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-05-25&returnDate=2018-05-
26&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-06-
01","returnDate":"2018-06-02","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-06-01&returnDate=2018-06-
02&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-06-
08","returnDate":"2018-06-09","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-06-08&returnDate=2018-06-
09&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-06-
15","returnDate":"2018-06-16","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-06-15&returnDate=2018-06-
16&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-06-
22","returnDate":"2018-06-23","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-06-22&returnDate=2018-06-
23&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-04-
07","returnDate":"2018-04-08","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-04-07&returnDate=2018-04-
08&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-04-
08","returnDate":"2018-04-09","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-04-08&returnDate=2018-04-
09&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-04-
09","returnDate":"2018-04-10","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-04-09&returnDate=2018-04-
10&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-04-
10","returnDate":"2018-04-11","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-04-10&returnDate=2018-04-
11&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-04-
11","returnDate":"2018-04-12","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-04-11&returnDate=2018-04-
12&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-04-
12","returnDate":"2018-04-13","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-04-12&returnDate=2018-04-
13&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-04-
15","returnDate":"2018-04-16","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-04-15&returnDate=2018-04-
16&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-04-
16","returnDate":"2018-04-17","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-04-16&returnDate=2018-04-
17&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-04-
17","returnDate":"2018-04-18","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-04-17&returnDate=2018-04-
18&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-04-
18","returnDate":"2018-04-19","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-04-18&returnDate=2018-04-
19&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-04-
19","returnDate":"2018-04-20","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-04-19&returnDate=2018-04-
20&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-04-
23","returnDate":"2018-04-24","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-04-23&returnDate=2018-04-
24&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-04-
24","returnDate":"2018-04-25","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-04-24&returnDate=2018-04-
25&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-04-
30","returnDate":"2018-05-01","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-04-30&returnDate=2018-05-
01&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-05-
02","returnDate":"2018-05-03","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-05-02&returnDate=2018-05-
03&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-05-
07","returnDate":"2018-05-08","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-05-07&returnDate=2018-05-
08&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-05-
14","returnDate":"2018-05-15","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-05-14&returnDate=2018-05-
15&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-05-
15","returnDate":"2018-05-16","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-05-15&returnDate=2018-05-
16&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-05-
24","returnDate":"2018-05-25","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-05-24&returnDate=2018-05-
25&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-05-
29","returnDate":"2018-05-30","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-05-29&returnDate=2018-05-
30&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-05-
30","returnDate":"2018-05-31","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-05-30&returnDate=2018-05-
31&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-05-
31","returnDate":"2018-06-01","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-05-31&returnDate=2018-06-
01&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-06-
02","returnDate":"2018-06-03","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-06-02&returnDate=2018-06-
03&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-06-
04","returnDate":"2018-06-05","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-06-04&returnDate=2018-06-
05&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-06-
05","returnDate":"2018-06-06","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-06-05&returnDate=2018-06-
06&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-06-
06","returnDate":"2018-06-07","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-06-06&returnDate=2018-06-
07&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-06-
07","returnDate":"2018-06-08","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-06-07&returnDate=2018-06-
08&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-06-
09","returnDate":"2018-06-10","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-06-09&returnDate=2018-06-
10&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-06-
10","returnDate":"2018-06-11","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-06-10&returnDate=2018-06-
11&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-06-
11","returnDate":"2018-06-12","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-06-11&returnDate=2018-06-
12&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-06-
12","returnDate":"2018-06-13","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-06-12&returnDate=2018-06-
13&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-06-
13","returnDate":"2018-06-14","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-06-13&returnDate=2018-06-
14&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-06-
14","returnDate":"2018-06-15","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-06-14&returnDate=2018-06-
15&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-06-
16","returnDate":"2018-06-17","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-06-16&returnDate=2018-06-
17&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-06-
17","returnDate":"2018-06-18","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-06-17&returnDate=2018-06-
18&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-06-
18","returnDate":"2018-06-19","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-06-18&returnDate=2018-06-
19&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-06-
19","returnDate":"2018-06-20","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-06-19&returnDate=2018-06-
20&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-06-
20","returnDate":"2018-06-21","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-06-20&returnDate=2018-06-
21&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-06-
21","returnDate":"2018-06-22","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-06-21&returnDate=2018-06-
22&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-06-
23","returnDate":"2018-06-24","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-06-23&returnDate=2018-06-
24&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-06-
25","returnDate":"2018-06-26","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-06-25&returnDate=2018-06-
26&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-06-
26","returnDate":"2018-06-27","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-06-26&returnDate=2018-06-
27&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-07-
02","returnDate":"2018-07-03","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-07-02&returnDate=2018-07-
03&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-07-
03","returnDate":"2018-07-04","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-07-03&returnDate=2018-07-
04&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-07-
16","returnDate":"2018-07-17","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-07-16&returnDate=2018-07-
17&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-07-
17","returnDate":"2018-07-18","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-07-17&returnDate=2018-07-
18&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-07-
18","returnDate":"2018-07-19","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-07-18&returnDate=2018-07-
19&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-05-
26","returnDate":"2018-05-27","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-05-26&returnDate=2018-05-
27&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-05-
19","returnDate":"2018-05-20","price":{"total":"139.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-05-19&returnDate=2018-05-
20&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-04-
20","returnDate":"2018-04-21","price":{"total":"140.73"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-04-20&returnDate=2018-04-
21&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-04-
25","returnDate":"2018-04-26","price":{"total":"140.73"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-04-25&returnDate=2018-04-
26&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-07-
13","returnDate":"2018-07-14","price":{"total":"140.73"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-07-13&returnDate=2018-07-
14&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-07-
14","returnDate":"2018-07-15","price":{"total":"140.73"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-07-14&returnDate=2018-07-
15&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-07-
20","returnDate":"2018-07-21","price":{"total":"140.73"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-07-20&returnDate=2018-07-
21&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-04-
14","returnDate":"2018-04-15","price":{"total":"148.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-04-14&returnDate=2018-04-
15&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-06-
30","returnDate":"2018-07-01","price":{"total":"149.73"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-06-30&returnDate=2018-07-
01&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-07-
21","returnDate":"2018-07-22","price":{"total":"149.73"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-07-21&returnDate=2018-07-
22&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-04-
22","returnDate":"2018-04-23","price":{"total":"150.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-04-22&returnDate=2018-04-
23&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-04-
29","returnDate":"2018-04-30","price":{"total":"150.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-04-29&returnDate=2018-04-
30&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-07-
04","returnDate":"2018-07-05","price":{"total":"150.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-07-04&returnDate=2018-07-
05&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-07-
09","returnDate":"2018-07-10","price":{"total":"150.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-07-09&returnDate=2018-07-
10&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-07-
11","returnDate":"2018-07-12","price":{"total":"150.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-07-11&returnDate=2018-07-
12&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-07-
12","returnDate":"2018-07-13","price":{"total":"150.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-07-12&returnDate=2018-07-
13&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-07-
19","returnDate":"2018-07-20","price":{"total":"150.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-07-19&returnDate=2018-07-
20&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-07-
23","returnDate":"2018-07-24","price":{"total":"150.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-07-23&returnDate=2018-07-
24&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-04-
13","returnDate":"2018-04-14","price":{"total":"151.73"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-04-13&returnDate=2018-04-
14&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-06-
29","returnDate":"2018-06-30","price":{"total":"151.73"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-06-29&returnDate=2018-06-
30&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-04-
21","returnDate":"2018-04-22","price":{"total":"159.73"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-04-21&returnDate=2018-04-
22&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-04-
26","returnDate":"2018-04-27","price":{"total":"163.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-04-26&returnDate=2018-04-
27&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-05-
03","returnDate":"2018-05-04","price":{"total":"163.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-05-03&returnDate=2018-05-
04&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-05-
10","returnDate":"2018-05-11","price":{"total":"163.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-05-10&returnDate=2018-05-
11&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-05-
22","returnDate":"2018-05-23","price":{"total":"163.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-05-22&returnDate=2018-05-
23&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-05-
28","returnDate":"2018-05-29","price":{"total":"163.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-05-28&returnDate=2018-05-
29&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-06-
27","returnDate":"2018-06-28","price":{"total":"163.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-06-27&returnDate=2018-06-
28&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-07-
01","returnDate":"2018-07-02","price":{"total":"163.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-07-01&returnDate=2018-07-
02&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-07-
05","returnDate":"2018-07-06","price":{"total":"163.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-07-05&returnDate=2018-07-
06&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-07-
10","returnDate":"2018-07-11","price":{"total":"163.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-07-10&returnDate=2018-07-
11&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-07-
15","returnDate":"2018-07-16","price":{"total":"163.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-07-15&returnDate=2018-07-
16&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-05-
06","returnDate":"2018-05-07","price":{"total":"163.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-05-06&returnDate=2018-05-
07&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-07-
22","returnDate":"2018-07-23","price":{"total":"163.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-07-22&returnDate=2018-07-
23&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-07-
07","returnDate":"2018-07-08","price":{"total":"168.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-07-07&returnDate=2018-07-
08&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-07-
08","returnDate":"2018-07-09","price":{"total":"173.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-07-08&returnDate=2018-07-
09&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-05-
18","returnDate":"2018-05-19","price":{"total":"174.73"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-05-18&returnDate=2018-05-
19&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-04-
28","returnDate":"2018-04-29","price":{"total":"178.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-04-28&returnDate=2018-04-
29&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-05-
05","returnDate":"2018-05-06","price":{"total":"178.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-05-05&returnDate=2018-05-
06&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-05-
20","returnDate":"2018-05-21","price":{"total":"184.61"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-05-20&returnDate=2018-05-
21&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-05-
12","returnDate":"2018-05-13","price":{"total":"187.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-05-12&returnDate=2018-05-
13&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-06-
24","returnDate":"2018-06-25","price":{"total":"188.95"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-06-24&returnDate=2018-06-
25&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-05-
01","returnDate":"2018-05-02","price":{"total":"194.62"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-05-01&returnDate=2018-05-
02&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-05-
08","returnDate":"2018-05-09","price":{"total":"194.62"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-05-08&returnDate=2018-05-
09&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-04-
27","returnDate":"2018-04-28","price":{"total":"198.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-04-27&returnDate=2018-04-
28&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-05-
04","returnDate":"2018-05-05","price":{"total":"198.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-05-04&returnDate=2018-05-
05&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-05-
11","returnDate":"2018-05-12","price":{"total":"198.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-05-11&returnDate=2018-05-
12&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-05-
09","returnDate":"2018-05-10","price":{"total":"198.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-05-09&returnDate=2018-05-
10&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-05-
13","returnDate":"2018-05-14","price":{"total":"198.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-05-13&returnDate=2018-05-
14&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-05-
16","returnDate":"2018-05-17","price":{"total":"198.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-05-16&returnDate=2018-05-
17&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-05-
17","returnDate":"2018-05-18","price":{"total":"198.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-05-17&returnDate=2018-05-
18&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-05-
21","returnDate":"2018-05-22","price":{"total":"198.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-05-21&returnDate=2018-05-
22&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-05-
23","returnDate":"2018-05-24","price":{"total":"198.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-05-23&returnDate=2018-05-
24&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-05-
27","returnDate":"2018-05-28","price":{"total":"198.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-05-27&returnDate=2018-05-
28&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-06-
03","returnDate":"2018-06-04","price":{"total":"198.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-06-03&returnDate=2018-06-
04&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-06-
28","returnDate":"2018-06-29","price":{"total":"198.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-06-28&returnDate=2018-06-
29&adults=1&nonStop=false"}},{"type":"flight-
date","origin":"NCE","destination":"PAR","departureDate":"2018-07-
06","returnDate":"2018-07-07","price":{"total":"222.45"},"links":
{"flightDestinations":"[Link]
origin=NCE&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION","flightOffers":"https://
[Link]/v1/shopping/flight-offers?
origin=NCE&destination=PAR&departureDate=2018-07-06&returnDate=2018-07-
07&adults=1&nonStop=false"}}],"dictionaries":{"currencies":{"EUR":"EURO"},"locations":
{"PAR":{"subType":"CITY","detailedName":"PARIS"},"NCE":
{"subType":"AIRPORT","detailedName":"COTE D AZUR"}}},"meta":{"currency":"EUR","links":
{"self":"[Link]
origin=NCE&destination=PAR&departureDate=2018-04-06,2018-10-
02&oneWay=false&duration=1&nonStop=false&viewBy=DURATION"},"defaults":
{"departureDate":"2018-04-06,2018-10-
02","oneWay":false,"nonStop":false,"viewBy":"DURATION"}}}

POSTFlight Availabilities Search


Open request
[Link]
The Amadeus Flight Availability API provides a list of flights with seats for sale on a given itinerary
and the quantity of seats available in different fare classes. In addition to availability, the API also
returns carrier and aircraft information, the departure and arrival terminals, schedule, and route.

AuthorizationBearer Token
This request is using an authorization helper from folder Flights

Request Headers
X-HTTP-Method-Override
GET

Bodyraw (json)
View More

json
{
"originDestinations": [
{
"id": "1",
"originLocationCode": "BOS",
"destinationLocationCode": "MAD",
"departureDateTime": {
"date": "",
"time": "21:15:00"
}
}
],
"travelers": [
{
"id": "1",
"travelerType": "ADULT"
},
{
"id": "2",
"travelerType": "CHILD"
}
],
"sources": [
"GDS"
]

}
GETTravel Recommendations
Open request
[Link]
cityCodes=PAR&travelerCountryCode=FR
Add request description…

AuthorizationBearer Token
This request is using an authorization helper from folder Flights

Query Params
cityCodes
PAR
travelerCountryCode
FR

Flight Schedule
Add folder description…

AuthorizationBearer Token
This folder is using an authorization helper from folder Flights

GETOn Demand Flight Status


Open request
[Link]
carrierCode=BA&flightNumber=986&scheduledDepartureDate=
The Flight Status API provides real-time flight schedule data including up-to-date departure and
arrival times, terminal and gate information, flight duration and real-time delay status. Help travelers
track the live status of their flight and enjoy a stress-free trip.

AuthorizationBearer Token
This request is using an authorization helper from folder Flights

Query Params
carrierCode
BA
flightNumber
986
scheduledDepartureDate

GETFlight Delay Prediction


Open request
[Link]
originLocationCode=NCE&destinationLocationCode=IST&departureDate=2022-11-
01&departureTime=18:20:00&arrivalDate=2022-11-
01&arrivalTime=22:15:00&aircraftCode=321&carrierCode=TK&flightNumber=1816&duration=PT31H
10M
The Flight Delay Prediction API allows developers to forecast the chances for a flight to be delayed.

AuthorizationBearer Token
This request is using an authorization helper from folder Flights

Query Params
originLocationCode
NCE
destinationLocationCode
IST
departureDate
2022-11-01
departureTime
18:20:00
arrivalDate
2022-11-01
arrivalTime
22:15:00
aircraftCode
321
carrierCode
TK
flightNumber
1816
duration
PT31H10M

GETAirport On-Time Performance


Open request
[Link]
Returns a percentage of on-time flight departures from a given airport.

AuthorizationBearer Token
This request is using an authorization helper from folder Flights

Query Params
airportCode
JFK
date
2022-11-01

Airport
Add folder description…

AuthorizationBearer Token
This folder is using an authorization helper from folder Flights

GETAirport & City Search by Keyword


Open request
[Link]
subType=CITY,AIRPORT&keyword=MUC&countryCode=DE
The Airport & City Search REST/JSON API provides the full name, IATA code and geographical
information of cities or airports that match a given keyword parameter, for use in flight searches.

The response provides a list of cities and/or airports, sorted by travellers' traffic score, which is based
on the estimated yearly number of travellers by airport or city. Airports and cities with the highest
traffic are at the top of the list.

This operation allows retrieving the list of locations (airports or cities) that contain a specific keyword
in the start of any word in their name or in the start of their IATA code.

AuthorizationBearer Token
This request is using an authorization helper from folder Flights

Query Params
subType
CITY,AIRPORT
keyword
MUC
countryCode
DE

GETAirport & City Search by Id


Open request
[Link]
The Airport & City Search REST/JSON API provides the full name, IATA code and geographical
information of cities or airports that match a given keyword parameter, for use in flight searches.

The response provides a list of cities and/or airports, sorted by travellers' traffic score, which is based
on the estimated yearly number of travellers by airport or city. Airports and cities with the highest
traffic are at the top of the list.

This operation allows retrieving a locations (airports or cities) based on its id.

AuthorizationBearer Token
This request is using an authorization helper from folder Flights

GETAirport Nearest Relevant


Open request
[Link]
latitude=49.0000&longitude=2.55
The Airport Nearest Relevant REST/JSON API returns a list of relevant airports within a radius of 500
km of a given point. The relevance of an airport is based on the estimated yearly flight traffic of the
airport and on the distance from the point. The airports are sorted from most relevant to least
relevant by default. Other sorting possibilities are offered (by distance, by traffic score).

AuthorizationBearer Token
This request is using an authorization helper from folder Flights

Query Params
latitude
49.0000
longitude
2.55

GETAirport Routes
Open request
[Link]
The Amadeus Airport Routes API helps you find all destinations served by a given airport.

AuthorizationBearer Token
This request is using an authorization helper from folder Flights

Query Params
departureAirportCode
MAD
Departure Airport code following IATA standard
max
2
Maximum number of destination in the response.

Airlines
Add folder description…

AuthorizationBearer Token
This folder is using an authorization helper from folder Flights

GETFlight Check-in Links


Open request
[Link]
The Flight Check-in Links REST/JSON API helps simplify the check-in process for your users by
providing direct access to the airline’s check-in page. The following search parameters are required:
● Provider code: airline code
● Check-in page language

AuthorizationBearer Token
This request is using an authorization helper from folder Flights

Query Params
airlineCode
IB

GETAirline Code Lookup


Open request
[Link]
This API returns the airline name and code.

AuthorizationBearer Token
This request is using an authorization helper from folder Flights

Query Params
airlineCodes
BA,AIC,AIE

GETAirline Routes
Open request
[Link]
The Amadeus Airline Routes API helps you find all destinations served by a given airline. Provide the
IATA code of an airline and the API will retrieve a list of all destination cities along with their names
and IATA codes.

This API answers the question:

*"What destinations are served by this airline?"*

AuthorizationBearer Token
This request is using an authorization helper from folder Flights

Query Params
airlineCode
AF
Airline code following IATA standard
max
2
Maximum number of destinations in the response.

Destination experiences
Add folder description…

AuthorizationBearer Token
Token

GETTours and Activities


Open request
[Link]
latitude=41.397158&longitude=2.160873&radius=1
The Tours and Activities API helps you search and book activities, sightseeing tours, day trips and
museum tickets in over 8,000 destinations around the world.

AuthorizationBearer Token
This request is using an authorization helper from folder Destination experiences

Query Params
latitude
41.397158
longitude
2.160873
radius
1

GETTours and Activities by Id


Open request
[Link]
Returns a Tour or Activity given an Id.

AuthorizationBearer Token
This request is using an authorization helper from folder Destination experiences

GETTours and Activities by square


Open request
[Link]
north=41.397158&west=2.160873&south=41.394582&east=2.177181
Returns a Tour or Activity given an area.

AuthorizationBearer Token
This request is using an authorization helper from folder Destination experiences

Query Params
north
41.397158
west
2.160873
south
41.394582
east
2.177181

GETCity Search
Open request
[Link]
countryCode=FR&keyword=PARIS&max=10&include=AIRPORTS
Add request description…

AuthorizationBearer Token
This request is using an authorization helper from folder Destination experiences
Query Params
countryCode
FR
keyword
PARIS
max
10
include
AIRPORTS

Car and Transfers


Add folder description…

AuthorizationBearer Token
Token

POSTTransfer Search
Open request
[Link]
Handling booking confirmations from different providers can be tricky as there is no standard format
used across the industry. The Trip Parser API makes it easy to extract information from different
booking confirmation emails and compile it into a single structured JSON itinerary. The API can parse
information from flight, hotel, rail and rental car confirmation mails. The API has three endpoints - the
first creates a parsing request, the second checks the request status and the third retrieves the
parsing results.

AuthorizationBearer Token
This request is using an authorization helper from folder Car and Transfers

Bodyraw (json)
View More

json
{
"startLocationCode": "CDG",
"endAddressLine": "Avenue Anatole France, 5",
"endCityName": "Paris",
"endZipCode": "75007",
"endCountryCode": "FR",
"endName": "Souvenirs De La Tour",
"endGeoCode": "48.859466,2.2976965",
"transferType": "PRIVATE",
"startDateTime": "",
"passengers": 2,
"stopOvers": [
{
"duration": "PT2H30M",
"sequenceNumber": 1,
"addressLine": "Avenue de la Bourdonnais, 19",
"countryCode": "FR",
"cityName": "Paris",
"zipCode": "75007",
"name": "De La Tours",
"geoCode": "48.859477,2.2976985",
"stateCode": "FR"
}
],
"startConnectedSegment": {
"transportationType": "FLIGHT",
"transportationNumber": "AF380",
"departure": {
"localDateTime": "2025-07-10T09:00:00",
"iataCode": "NCE"
},
"arrival": {
"localDateTime": "2025-07-10T10:00:00",
"iataCode": "CDG"
}
},
"passengerCharacteristics": [
{
"passengerTypeCode": "ADT",
"age": 20
},
{
"passengerTypeCode": "CHD",
"age": 10
}
]

POSTTransfer Booking
Open request
[Link]
Handling booking confirmations from different providers can be tricky as there is no standard format
used across the industry. The Trip Parser API makes it easy to extract information from different
booking confirmation emails and compile it into a single structured JSON itinerary. The API can parse
information from flight, hotel, rail and rental car confirmation mails. The API has three endpoints - the
first creates a parsing request, the second checks the request status and the third retrieves the
parsing results.

AuthorizationBearer Token
This request is using an authorization helper from folder Car and Transfers

Query Params
offerId
transfer offer id from shopping/transfer-offers response

Bodyraw (json)
View More

json
{
"data": {
"note": "Note to driver",
"passengers": [
{
"firstName": "John",
"lastName": "Doe",
"title": "MR",
"contacts": {
"phoneNumber": "+33123456789",
"email": "user@[Link]"
},
"billingAddress": {
"line": "Avenue de la Bourdonnais, 19",
"zip": "75007",
"countryCode": "FR",
"cityName": "Paris"
}
}
],
"agency": {
"contacts": [
{
"email": {
"address": "abc@[Link]"
}
}
]
},
"payment": {
"methodOfPayment": "CREDIT_CARD",
"creditCard": {
"number": "4111111111111111",
"holderName": "JOHN DOE",
"vendorCode": "VI",
"expiryDate": "0928",
"cvv": "111"
}
},
"extraServices": [
{
"code": "EWT",
"itemId": "EWT0291"
}
],
"equipment": [
{
"code": "BBS"
}
],
"corporation": {
"address": {
"line": "5 Avenue Anatole France",
"zip": "75007",
"countryCode": "FR",
"cityName": "Paris"
},
"info": {
"AU": "FHOWMD024",
"CE": "280421GH"
}
},
"startConnectedSegment": {
"transportationType": "FLIGHT",
"transportationNumber": "AF380",
"departure": {
"uicCode": "7400001",
"iataCode": "CDG",
"localDateTime": "2023-03-27T20:03:00"
},
"arrival": {
"uicCode": "7400001",
"iataCode": "CDG",
"localDateTime": "2023-03-27T20:03:00"
}
},
"endConnectedSegment": {
"transportationType": "FLIGHT",
"transportationNumber": "AF380",
"departure": {
"uicCode": "7400001",
"iataCode": "CDG",
"localDateTime": "2023-03-27T20:03:00"
},
"arrival": {
"uicCode": "7400001",
"iataCode": "CDG",
"localDateTime": "2023-03-27T20:03:00"
}
}
}

POSTTransfer Management
Open request
[Link]
cancellation?confirmNbr={{transferConfirmNbr}}
Handling booking confirmations from different providers can be tricky as there is no standard format
used across the industry. The Trip Parser API makes it easy to extract information from different
booking confirmation emails and compile it into a single structured JSON itinerary. The API can parse
information from flight, hotel, rail and rental car confirmation mails. The API has three endpoints - the
first creates a parsing request, the second checks the request status and the third retrieves the
parsing results.

AuthorizationBearer Token
This request is using an authorization helper from folder Car and Transfers

Query Params
confirmNbr
{{transferConfirmNbr}}
transfer identifier - confirmation number from transfer supplier that identifies the ride

Market insights
Add folder description…

AuthorizationBearer Token
Token

GETFlight Most Traveled Destinations


Open request
[Link]
originCityCode=MAD&period=2019-11&sort=[Link]&max=10
The Flight Most Traveled Destinations REST/JSON API provides a list of the most popular flight
destinations from a given origin during a specific period. This can help answer questions like "Where
are most people flying to from Paris during the month of September?"

AuthorizationBearer Token
This request is using an authorization helper from folder Market insights

Query Params
originCityCode
MAD
period
2019-11
sort
[Link]
max
10

GETFlight Most Booked Destinations


Open request
[Link]
originCityCode=NCE&period=2017-11
The Flight Most Booked Destinations REST / JSON API allows to find the most popular flight
destinations from an origin during a flight period. This can help answer questions like "Where are
most people from Paris, in September, plan to go?"

AuthorizationBearer Token
This request is using an authorization helper from folder Market insights

Query Params
originCityCode
NCE
period
2017-11
GETFlight Busiest Traveling Period
Open request
[Link]
cityCode=PAR&period=2017&direction=ARRIVING
The Flight Busiest Traveling Period REST / JSON API allows to find the peak and off-peak travel
period for a given city. This can help answer questions like "When is it the cheapest to go to New
York?"

AuthorizationBearer Token
This request is using an authorization helper from folder Market insights

Query Params
cityCode
PAR
period
2017
direction
ARRIVING

Hotels
Add folder description…

AuthorizationBearer Token
Token

(Scenario)Basic Hotel Booking flow


Add folder description…

AuthorizationBearer Token
This folder is using an authorization helper from folder Hotels

POSTStep 0: Authorization
Open request
[Link]
To request an access token you need to send a POST request with the following body parameters to
the authorization server:

● "grant_type" with the value "client_credentials"


● "client_id" with your API Key.
● "client_secret" with your API Secret.

Bodyurlencoded
client_id
CLIENT_ID
client_secret
CLIENT_SECRET
grant_type
client_credentials

GETStep 1: Find Hotels by city


Open request
[Link]
Add request description…

AuthorizationBearer Token
This request is using an authorization helper from folder Hotels

Query Params
radius
5
Maximum distance from the geographical coordinates express in defined units. The default radius is
5 KM.
radiusUnit
KM
Unit of measurement used to express the radius. It can be either metric kilometer or imperial mile.
chainCodes
Array of hotel chain codes. Each code is a string consisted of 2 capital alphabetic characters.
amenities
List of amenities
ratings
Hotel stars. Up to four values can be requested at the same time in a comma separated list.
hotelSource
ALL
Hotel source with values BEDBANK for aggregators, DIRECTCHAIN for GDS/Distribution and ALL for
both
cityCode
DEL

GETStep 2: Hotel Offers Search


Open request
[Link]
Search for hotels and retrieve availability and rates information

AuthorizationBearer Token
This request is using an authorization helper from folder Hotels

Query Params
hotelIds
adults
1

POSTStep 3: Hotel Booking v1


Open request
[Link]
The Hotel Booking REST/JSON API is an open API that allows you to book the best hotel offers you
have searched from a wide choice of providers.

AuthorizationBearer Token
This request is using an authorization helper from folder Hotels

Bodyraw (json)
View More

json
{
"data": {
"offerId": "",
"guests": [
{
"id": 1,
"name": {
"title": "MR",
"firstName": "BOB",
"lastName": "SMITH"
},
"contact": {
"phone": "+33679278416",
"email": "[Link]@[Link]"
}
}
],
"payments": [
{
"id": 1,
"method": "creditCard",
"card": {
"vendorCode": "VI",
"cardNumber": "4151289722471370",
"expiryDate": "2023-08"
}
}
],
"rooms": [
{
"guestIds": [
1
],
"paymentId": 1,
"specialRequest": "I will arrive at midnight"
}
]
}

GETHotel List by Id
Open request
[Link]
Add request description…

AuthorizationBearer Token
This request is using an authorization helper from folder Hotels

Query Params
hotelIds
Amadeus unique hotel code. Several hotelId can be entered using a coma.

GETHotel List by Geocode


Open request
[Link]
latitude=41.397158&longitude=2.160873
Add request description…

AuthorizationBearer Token
This request is using an authorization helper from folder Hotels

Query Params
latitude
41.397158
The latitude of the searched geographical point expressed in geometric degrees.
longitude
2.160873
The longitude of the searched geographical point expressed in geometric degrees.
radius
5
Maximum distance from the geographical coordinates expressed in defined units. The default value
is 5 KM.
radiusUnit
KM
Unit of measurement used to express the radius. It can be either metric kilometer or imperial mile.
chainCodes
Array of hotel chain codes. Each code is a string consisted of 2 capital alphabetic characters
amenities
List of amenities.
ratings
Hotel stars. Up to four values can be requested at the same time in a comma separated list.
hotelSource
ALL
Hotel source with values BEDBANK for aggregators, DIRECTCHAIN for GDS/Distribution and ALL for
both.

GETHotel List by City


Open request
[Link]
Add request description…

AuthorizationBearer Token
This request is using an authorization helper from folder Hotels

Query Params
radius
5
Maximum distance from the geographical coordinates express in defined units. The default radius is
5 KM.
radiusUnit
KM
Unit of measurement used to express the radius. It can be either metric kilometer or imperial mile.
chainCodes
Array of hotel chain codes. Each code is a string consisted of 2 capital alphabetic characters.
amenities
List of amenities
ratings
Hotel stars. Up to four values can be requested at the same time in a comma separated list.
hotelSource
ALL
Hotel source with values BEDBANK for aggregators, DIRECTCHAIN for GDS/Distribution and ALL for
both
cityCode
BLR

GETHotel Search
Open request
[Link]
Search for hotels and retrieve availability and rates information

AuthorizationBearer Token
This request is using an authorization helper from folder Hotels
Query Params
hotelIds
adults
1

GETHotel Search Offer Information


Open request
[Link]
Get room and rate details.

AuthorizationBearer Token
This request is using an authorization helper from folder Hotels

POSTHotel Booking v1
Open request
[Link]
The Hotel Booking REST/JSON API is an open API that allows you to book the best hotel offers you
have searched from a wide choice of providers.

AuthorizationBearer Token
This request is using an authorization helper from folder Hotels

Bodyraw (json)
View More

json
{
"data": {
"offerId": "",
"guests": [
{
"id": 1,
"name": {
"title": "MR",
"firstName": "BOB",
"lastName": "SMITH"
},
"contact": {
"phone": "+33679278416",
"email": "[Link]@[Link]"
}
}
],
"payments": [
{
"id": 1,
"method": "creditCard",
"card": {
"vendorCode": "VI",
"cardNumber": "4111111111111111",
"expiryDate": "2026-08"
}
}
],
"rooms": [
{
"guestIds": [
1
],
"paymentId": 1,
"specialRequest": "I will arrive at midnight"
}
]
}

POSTHotel Booking v2
Open request
[Link]
The Hotel Booking REST/JSON API is an open API that allows you to book the best hotel offers you
have searched from a wide choice of providers.

AuthorizationBearer Token
This request is using an authorization helper from folder Hotels

Bodyraw (json)
View More

json
{
"data": {
"type": "hotel-order",
"guests": [
{
"tid": 1,
"title": "MR",
"firstName": "BOB",
"lastName": "SMITH",
"phone": "+33679278416",
"email": "[Link]@[Link]"
}
],
"travelAgent": {
"contact": {
"email": "[Link]@[Link]"
}
},
"roomAssociations": [
{
"guestReferences": [
{
"guestReference": "1"
}
],
"hotelOfferId": ""
}
],
"payment": {
"method": "CREDIT_CARD",
"paymentCard": {
"paymentCardInfo": {
"vendorCode": "VI",
"cardNumber": "4151289722471370",
"expiryDate": "2026-08",
"holderName": "BOB SMITH"
}
}
}
}

GETHotel Ratings
Open request
[Link]
hotelIds=ELONMFS,ADNYCCTB,XXXYYY01
This API provides hotel ratings based on automated sentiment analysis algorithm applied on the
online reviews

AuthorizationBearer Token
This request is using an authorization helper from folder Hotels
Query Params
hotelIds
ELONMFS,ADNYCCTB,XXXYYY01

GETHotel Name Autocomplete


Open request
[Link]
keyword=PARI&subType=HOTEL_LEISURE
The Hotel Name Autocomplete API enables you to autocomplete a hotel search field and help your
users quickly find their desired hotel. For a given text string, the API will provide a list of up to 20
hotels whose names most closely match.

AuthorizationBearer Token
This request is using an authorization helper from folder Hotels

Query Params
keyword
PARI
subType
HOTEL_LEISURE

Itinerary management
Add folder description…

AuthorizationBearer Token
Token

GETTrip Purpose Prediction


Open request
[Link]
originLocationCode=LON&destinationLocationCode=AMS&departureDate=&returnDate=
It allows developers to forecast traveler purpose, Business or Leisure, together with the probability in
the context of search & shopping.
AuthorizationBearer Token
This request is using an authorization helper from folder Itinerary management

Query Params
originLocationCode
LON
destinationLocationCode
AMS
departureDate
returnDate

You might also like