The Farepod Outward API requires an API key and secret for authentication. You can obtain these credentials by contacting support
GET Endpoint for getting the details and balances of the user
https://outward-api-dev.farepod.co/api/v1/user-details
The input body is empty.
The output contains an object with the userId, userName and balances as well as limits for the user.
Field | Parent | Description | Data Type |
---|---|---|---|
user | root | Details of the current user | Object |
userId | user | userId of the current user | String |
userName | user | User Name of the current user | String |
balances | root | All the balances of the user | Object |
totalBalance | balances | Total balance for the user includes credit balance and wallet balance | Number |
walletBalance | balances | Wallet Balance of the user | Number |
creditBalance | balances | Credit Balance of the user | Number |
outStanding | balances | Outstanding Balance of the user | Number |
limits | root | Different balance limits for the user | Object |
creditLimit | limits | Maximum Credit allowed for the user | Number |
POST Endpoint to search for flights.
https://outward-api-dev.farepod.co/api/v1/flights
More specifically, the input includes the following fields:
The output includes an array of objects, with each object representing a potential flight itinerary that matches the search criteria. Each object includes the following fields:
Input | Parent | Description | Data Type | Required |
---|---|---|---|---|
cabinClass | root | The cabin class for the flight | CabinClassEnum | True |
passengers | root | The number of passengers for the flight. | Object | True |
adult | passengers | The number of adult passengers for the flight | Integer | True |
child | passengers | The number of child passengers for the flight | Integer | True |
infant | passengers | The number of infant passengers for the flight | Integer | True |
routeInfo | root | The route information for the flight | List | True |
from | routeInfo | The origin airport code for the flight | Object | True |
code | from | The airport code for the origin airport | String | True |
to | routeInfo | The destination airport code for the flight | Object | True |
code | to | The airport code for the destination airport | String | True |
travelDate | routeInfo | The travel date for the flight | String | True |
filter | root | The filter options for the flight search | Object | True |
pnr | filter | The flight pnr type enum default is "ALL" | FareSearchPnrFilterEnum | False |
pft | filter | The fare type for the flight | String | True |
isDirectFlight | filter | Whether the flight should be a direct flight | Boolean | True |
isConnectingFlight | filter | Whether the flight should be a connecting flight | Boolean | True |
preferredAirlines | root | Airline Codes for the preferred airlines | Array<String> | True |
Field | Parent | Description | Data Type |
---|---|---|---|
segments | root | Details of the flight, including flight name, number, duration, stops, and arrival/departure details. | Array |
flight | segments | The name, code and number of the flight. | Object |
duration | segments | The duration of the flight in minutes. | Number |
layoverDuration | segments | The duration of any layovers during the flight in minutes. | Number |
stops | segments | The number of stops during the flight. | Number |
stopsOverAirports | segments | The codes of any airports where the flight stops. | Array |
arrival | segments | The date, time, and airport details of the flight's arrival. | Object |
date | segments.arrival | The date of the flight's arrival in YYYYMMDD format. | String |
time | segments.arrival | The time of the flight's arrival in HHMMSS format. | String |
airport | segments.arrival | The code, name, city, city code, country, country code, and terminal of the airport where the flight arrives. | Object |
departure | segments | The date, time, and airport details of the flight's departure. | Object |
date | segments.departure | The date of the flight's departure in YYYYMMDD format. | String |
time | segments.departure | The time of the flight's departure in HHMMSS format. | String |
airport | segments.departure | The code, name, city, city code, country, country code, and terminal of the airport where the flight departs. | Object |
priceList(sorted in increasing order of fare) | root | The fare details for the flight, including the total fare, net fare, fare components, taxes and fees, seats remaining, baggage details, refundable type, cabin class, and meal indicator for each fare type (adult, child, and infant). | Array |
id | priceList | A unique ID for the fare. | String |
totalFare | priceList | The total fare for the flight. | Number |
netFare | priceList | The net fare for the flight. | Number |
totalBaseFare | priceList | The base fare for the flight. | Number |
totalTaxesAndFees | priceList | The total taxes and fees for the flight. | Number |
managementFees | priceList | Breakup of management fees for the flight. | Object |
managementFees | managementFees | The management fees for the flight | Number |
gstOnManagementFees | managementFees | The gst on management fees for the flight | Number |
totalManagementFees | managementFees | Management Fees + GST on management fees | Number |
commission | priceList | Breakup of commission for the flight. | Object |
grossCommission | commission | The gross commission for the flight | Number |
tdsOnCommission | commission | The tds deducted on gross commission for the flight | Number |
netCommission | commission | The net commission after tds deduction for the flight | Number |
fareDescription | priceList | An object containing fare details for different passenger types (adult, child and infant). | Object |
adult | priceList.fareDescription | An object containing fare details for an adult passenger. | Object |
fareComponent | priceList.fareDescription.adult | An object containing the net, base, taxes and fees, and total fares for the adult passenger. | Object |
taxesAndFees | priceList.fareDescription.adult | An array of objects containing the names and values of taxes and fees for the adult passenger. | Object |
commission | priceList.fareDescription.adult | An array of objects containing the names and values of commission breakdown for the adult passenger. | Object |
seatsRemaining | priceList.fareDescription.adult | The number of remaining seats available for adult passengers. | Number |
baggage | priceList.fareDescription.adult |
An object that contains the baggage details for adult
passengers: checkIn: The check-in baggage limit for adult passengers. cabin: The cabin baggage limit for adult passengers. |
Object |
refundableType | priceList .fareDescription.adult. | The refundable type of the fare for adult passengers. | RefundableEnum |
cabinClass | priceList .fareDescription.adult. | The cabin class of the fare for adult passengers. | CabinClassEnum |
fareClass | priceList .fareDescription.adult. | The fare class of the adult passengers. | String |
mealIndicator | priceList .fareDescription.adult. | A boolean flag indicating if meal is included in the fare for adult passengers. | Boolean |
child | priceList .fareDescription | An object containing fare details for a child passenger | Object |
fareComponent | priceList .fareDescription.child | An object containing the net, base, taxes and fees, and total fares for the child passenger | Object |
taxesAndFees | priceList .fareDescription.child | An array of objects containing the names and values of taxes and fees for the child passenger | Object |
commission | priceList.fareDescription.child | An array of objects containing the names and values of commission breakdown for the child passenger. | Object |
seatsRemaining | priceList .fareDescription.child | The number of remaining seats available for child passengers | Number |
baggage | priceList .fareDescription.child | An object that contains the baggage details for adult passengers. checkIn: The check-in baggage limit for adult passengers. cabin: The cabin baggage limit for adult passengers. | Object |
refundableType | priceList .fareDescription.child | The refundable type of the fare for child passengers. | RefundableEnum |
cabinClass | priceList .fareDescription.child | The cabin class of the fare for child passengers. | CabinClassEnum |
fareClass | priceList .fareDescription.child | The Fare class of the child passengers. | String |
mealIndicator | priceList .fareDescription.child | A boolean flag indicating if meal is included in the fare for child passengers | Boolean |
infant | priceList .fareDescription | An object containing fare details for a infant passenger | Object |
fareComponent | priceList .fareDescription.infant | An object containing the net, base, taxes and fees, and total fares for the infant passenger | Object |
taxesAndFees | priceList .fareDescription.infant | An array of objects containing the names and values of taxes and fees for the infant passenger | Object |
commission | priceList.fareDescription.infant | An array of objects containing the names and values of commission breakdown for the infant passenger. | Object |
seatsRemaining | priceList .fareDescription.infant | The number of remaining seats available for infant passengers | Number |
baggage | priceList .fareDescription.infant | An object that contains the baggage details for adult passengers. checkIn: The check-in baggage limit for adult passengers. cabin: The cabin baggage limit for adult passengers. | Object |
refundableType | priceList .fareDescription.infant | The refundable type of the fare for infant passengers. | RefundableEnum |
cabinClass | priceList .fareDescription.infant | The cabin class of the fare for infant passengers. | CabinClassEnum |
fareClass | priceList .fareDescription.infant | The Fare class of the infant passengers. | String |
mealIndicator | priceList .fareDescription.infant | A boolean flag indicating if meal is included in the fare for infant passengers | Boolean |
duration | root | duration of flight in minutes | Number |
POST Endpoint to review flight by id.
https://outward-api-dev.farepod.co/api/v1/flights/:id
The input request has no body
The output includes an object, with following key fields:
Field | Parent | Description | Data Type |
---|---|---|---|
bookingId | root | A unique ID for the fare. | String |
segments | root | Details of each flight segment in the itinerary | Array |
flight | segments | Information about the airline operating the flight | Object |
name | segments.flight | Name of the airline | String |
code | segments.flight | Two-letter code of the airline | String |
Number | segments.flight | Flight number | String |
duration | segments | Total duration of the flight segment in minutes | Number |
layoverDuration | segments | Duration of any layover in minutes | Number |
stops | segments | Number of stops in the flight segment | Number |
stopsOverAirports | segments | Array of airports where the flight stops | Array of Objects |
code | segments.stopsOverAirports | Three-letter code of the airport | String |
name | segments.stopsOverAirports | Name of the airport | String |
city | segments.stopsOverAirports | City where the airport is located | String |
cityCode | segments.stopsOverAirports | Two-letter code of the city | String |
country | segments.stopsOverAirports | Country where the airport is located | String |
countryCode | segments.stopsOverAirports | Two-letter code of the country | String |
terminal | segments.stopsOverAirports | Terminal where the flight stops | String |
arrival | segments | Details of the arrival airport | Object |
date | segments.arrival | Date of arrival in YYYYMMDD format | String |
time | segments.arrival | Time of arrival in HHMMSS format | String |
airport | segments.arrival | Details of the arrival airport | Object |
code | segments.arrival.airport | Three-letter code of the airport | String |
name | segments.arrival.airport | Name of the airport | String |
city | segments.arrival.airport | City where the airport is located | String |
cityCode | segments.arrival.airport | Two-letter code of the city | String |
country | segments.arrival.airport | Country where the airport is located | String |
countryCode | segments.arrival.airport | Two-letter code of the country | String |
terminal | segments.arrival.airport | Terminal where the flight arrives | String |
departure | segments | Details of the departure airport. | Object |
date | segments.departure | Date of departure in YYYYMMDD format | String |
time | segments.departure | Time of departure in HHMMSS format | String |
airport | segments.departure | Details of the departure airport | Object |
code | segments.departure.airport | Three-letter code of the airport | String |
name | segments.departure.airport | Name of the airport | String |
city | segments.departure.airport | City where the airport is located | String |
cityCode | segments.departure.airport | Two-letter code of the city | String |
country | segments.departure.airport | Country where the airport is located | String |
countryCode | segments.departure.airport | Two-letter code of the country | String |
terminal | segments.departure.airport | Terminal where the flight departs | String |
operatingAirline | segments | Information about the airline operating the flight (if different from the marketing airline) | Object |
priceDetail | root | The fare details for the flight, including the total fare, net fare, fare components, taxes and fees, seats remaining, baggage details, refundable type, cabin class, and meal indicator for each fare type (adult, child, and infant). | Object |
id | priceDetail | A unique ID for the fare. | String |
totalFare | priceDetail | The total fare for the flight. | Number |
netFare | priceDetail | The net fare for the flight. | Number |
totalBaseFare | priceDetail | The base fare for the flight. | Number |
totalTaxesAndFees | priceDetail | The total taxes and fees for the flight. | Number |
managementFees | priceDetail | Breakup of management fees for the flight. | Object |
managementFees | managementFees | The management fees for the flight | Number |
gstOnManagementFees | managementFees | The gst on management fees for the flight | Number |
totalManagementFees | managementFees | Management Fees + GST on management fees | Number |
commission | priceDetail | Breakup of commission for the flight. | Object |
grossCommission | commission | The gross commission for the flight | Number |
tdsOnCommission | commission | The tds deducted on gross commission for the flight | Number |
netCommission | commission | The net commission after tds deduction for the flight | Number |
fareDescription | priceDetail | An object containing fare details for different passenger types (adult, child and infant). | Object |
adult | priceDetail.fareDescription | An object containing fare details for an adult passenger. | Object |
fareComponent | priceDetail.fareDescription.adult | An object containing the net, base, taxes and fees, and total fares for the adult passenger. | Object |
taxesAndFees | priceDetail.fareDescription.adult | An array of objects containing the names and values of taxes and fees for the adult passenger. | Object |
commission | priceDetail.fareDescription.adult | An array of objects containing the names and values of commission breakdown for the adult passenger. | Object |
seatsRemaining | priceDetail.fareDescription.adult | The number of remaining seats available for adult passengers. | Number |
baggage | priceDetail.fareDescription.adult |
An object that contains the baggage details for adult
passengers: checkIn: The check-in baggage limit for adult passengers. cabin: The cabin baggage limit for adult passengers. |
Object |
refundableType | priceDetail .fareDescription.adult. | The refundable type of the fare for adult passengers. | RefundableEnum |
cabinClass | priceDetail .fareDescription.adult. | The cabin class of the fare for adult passengers. | CabinClassEnum |
fareClass | priceDetail .fareDescription.adult. | The fare class of the adult passengers. | String |
mealIndicator | priceDetail .fareDescription.adult. | A boolean flag indicating if meal is included in the fare for adult passengers. | Boolean |
child | priceDetail .fareDescription | An object containing fare details for a child passenger | Object |
fareComponent | priceDetail .fareDescription.child | An object containing the net, base, taxes and fees, and total fares for the child passenger | Object |
taxesAndFees | priceDetail .fareDescription.child | An array of objects containing the names and values of taxes and fees for the child passenger | Object |
commission | priceDetail.fareDescription.child | An array of objects containing the names and values of commission breakdown for the child passenger. | Object |
seatsRemaining | priceDetail .fareDescription.child | The number of remaining seats available for child passengers | Number |
baggage | priceDetail .fareDescription.child | An object that contains the baggage details for adult passengers. checkIn: The check-in baggage limit for adult passengers. cabin: The cabin baggage limit for adult passengers. | Object |
refundableType | priceDetail .fareDescription.child | The refundable type of the fare for child passengers. | RefundableEnum |
cabinClass | priceDetail .fareDescription.child | The cabin class of the fare for child passengers. | CabinClassEnum |
fareClass | priceDetail .fareDescription.child | The Fare class of the child passengers. | String |
mealIndicator | priceDetail .fareDescription.child | A boolean flag indicating if meal is included in the fare for child passengers | Boolean |
infant | priceDetail .fareDescription | An object containing fare details for a infant passenger | Object |
fareComponent | priceDetail .fareDescription.infant | An object containing the net, base, taxes and fees, and total fares for the infant passenger | Object |
taxesAndFees | priceDetail .fareDescription.infant | An array of objects containing the names and values of taxes and fees for the infant passenger | Object |
commission | priceDetail.fareDescription.infant | An array of objects containing the names and values of commission breakdown for the infant passenger. | Object |
seatsRemaining | priceDetail .fareDescription.infant | The number of remaining seats available for infant passengers | Number |
baggage | priceDetail .fareDescription.infant | An object that contains the baggage details for adult passengers. checkIn: The check-in baggage limit for adult passengers. cabin: The cabin baggage limit for adult passengers. | Object |
refundableType | priceDetail .fareDescription.infant | The refundable type of the fare for infant passengers. | RefundableEnum |
cabinClass | priceDetail .fareDescription.infant | The cabin class of the fare for infant passengers. | CabinClassEnum |
fareClass | priceDetail .fareDescription.infant | The Fare class of the infant passengers. | String |
mealIndicator | priceDetail .fareDescription.infant | A boolean flag indicating if meal is included in the fare for infant passengers | Boolean |
duration | root | The duration of the flight in minutes. | Number |
stops | root | Whether flight is non stop. | String |
conditions | root | Details about which fields should be passed in Add Passengers Request | Object |
dob | conditions | Whether the date of birth should be passed in Add Passengers Request | Object |
adultRequired | dob | Whether the date of birth should be passed for adult passengers | Boolean |
childRequired | dob | Whether the date of birth should be passed for child passengers | Boolean |
infantRequired | dob | Whether the date of birth should be passed for infant passengers | Boolean |
isPassportRequired | conditions | Whether the passport details should be passed in Add Passengers Request | Boolean |
POST Endpoint to search fare rules of a flight by id. Both search and bookingId can be used to get fare rules.
https://outward-api-dev.farepod.co/api/v1/flights/:id/fare-rules
The input body is empty.
The output includes an object, with a single key :
POST Endpoint is used to add passenger details. This endpoint returns a booking ID and final amount of booking that is subsequently used in the [book + make endpoint].
https://outward-api-dev.farepod.co/api/v1/bookings/:id/passenger-details
id passed is pricelist.id that we get from search flights
Input includes following fields:
The output includes an object, with a 2 key :
Input | Description | Data Type | Required | Empty Value |
---|---|---|---|---|
passengers | Object containing information about the passengers traveling | Object | True | {} |
passengers .adults | Array of objects containing information about each adult passenger | Array | True | [] |
passengers .adults .title | For Adult the titles are Mr, Mrs and Ms For Children the titles are Master and Ms For Infants the titles are Master and Ms | PassengerTitleEnum | True | Mandatory Field |
passengers .adults .firstName | The first name of the passenger | String | True | Mandatory Field |
passengers .adults.lastName | The last name of the passenger | String | True | Mandatory Field |
passengers .adults .dob | Date of birth of the passenger | String | Based on dob conditions in review response | "" |
passengers .adults .passport | Object containing information about the passenger's passport | Object | Based on isPassportRequired in conditions in review response |
{ "expiry": "", "nationality": "", "number": "" , "issueDate": "" } |
passengers .adults .passport .expiry | The expiry date of the passenger's passport | String | False | "" |
passengers .adults .passport .nationality | The nationality of the passenger, as specified by the passport | String | False | "" |
passengers .adults .passport .number | The passport number of the passenger | String | False | "" |
passengers .adults .passport .issueDate | The issue date of the passenger | String | False | "" |
passengers .children (Same sub-fields as adult) |
Array of objects containing information about each child passenger (between age 2 years old and 12 years old) | Array | True | [] |
passengers .infants (Same sub-fields as adult) |
Array of objects containing information about each infant passenger (under 2 years old) | Array | True | [] |
contactDetails | Object containing the contact details of the person booking the travel | Object | True | Mandatory Field |
contactDetails .mobileNumber | The mobile phone number of the person booking the travel | String | True | Mandatory Field |
contactDetails .email | The email address of the person booking the travel | String | True | Mandatory Field |
Field | Parent | Description | Data Type |
---|---|---|---|
_id | root | Booking ID that is used to ticket and also to retreive booking | String |
amount | root | Total amount of booking in INR that will be charged | Number |
POST Endpoint to book and make payment for a flight booking.
https://outward-api-dev.farepod.co/api/v1/bookings/:id/book
The input request body includes the amount to be paid in INR:
{ "amount": 4453.6 }
The output includes an object with the following key fields:
Field | Parent | Description | Data Type |
---|---|---|---|
_id | root | The unique booking ID. | String |
priceDetail | root | The fare details for the flight, including the total fare, net fare, fare components, taxes and fees, seats remaining, baggage details, refundable type, cabin class, and meal indicator for each fare type (adult, child, and infant). | Object |
id | priceDetail | A unique ID for the fare. | String |
totalFare | priceDetail | The total fare for the flight. | Number |
netFare | priceDetail | The net fare for the flight. | Number |
totalBaseFare | priceDetail | The base fare for the flight. | Number |
totalTaxesAndFees | priceDetail | The total taxes and fees for the flight. | Number |
managementFees | priceDetail | Breakup of management fees for the flight. | Object |
managementFees | managementFees | The management fees for the flight | Number |
gstOnManagementFees | managementFees | The gst on management fees for the flight | Number |
totalManagementFees | managementFees | Management Fees + GST on management fees | Number |
commission | priceDetail | Breakup of commission for the flight. | Object |
grossCommission | commission | The gross commission for the flight | Number |
tdsOnCommission | commission | The tds deducted on gross commission for the flight | Number |
netCommission | commission | The net commission after tds deduction for the flight | Number |
fareDescription | priceDetail | An object containing fare details for different passenger types (adult, child and infant). | Object |
adult | priceDetail.fareDescription | An object containing fare details for an adult passenger. | Object |
fareComponent | priceDetail.fareDescription.adult | An object containing the net, base, taxes and fees, and total fares for the adult passenger. | Object |
taxesAndFees | priceDetail.fareDescription.adult | An array of objects containing the names and values of taxes and fees for the adult passenger. | Object |
commission | priceDetail.fareDescription.adult | An array of objects containing the names and values of commission breakdown for the adult passenger. | Object |
seatsRemaining | priceDetail.fareDescription.adult | The number of remaining seats available for adult passengers. | Number |
baggage | priceDetail.fareDescription.adult |
An object that contains the baggage details for adult
passengers: checkIn: The check-in baggage limit for adult passengers. cabin: The cabin baggage limit for adult passengers. |
Object |
refundableType | priceDetail .fareDescription.adult. | The refundable type of the fare for adult passengers. | RefundableEnum |
cabinClass | priceDetail .fareDescription.adult. | The cabin class of the fare for adult passengers. | CabinClassEnum |
fareClass | priceDetail .fareDescription.adult. | The fare class of the adult passengers. | String |
mealIndicator | priceDetail .fareDescription.adult. | A boolean flag indicating if meal is included in the fare for adult passengers. | Boolean |
child | priceDetail .fareDescription | An object containing fare details for a child passenger | Object |
fareComponent | priceDetail .fareDescription.child | An object containing the net, base, taxes and fees, and total fares for the child passenger | Object |
taxesAndFees | priceDetail .fareDescription.child | An array of objects containing the names and values of taxes and fees for the child passenger | Object |
commission | priceDetail.fareDescription.child | An array of objects containing the names and values of commission breakdown for the child passenger. | Object |
seatsRemaining | priceDetail .fareDescription.child | The number of remaining seats available for child passengers | Number |
baggage | priceDetail .fareDescription.child | An object that contains the baggage details for adult passengers. checkIn: The check-in baggage limit for adult passengers. cabin: The cabin baggage limit for adult passengers. | Object |
refundableType | priceDetail .fareDescription.child | The refundable type of the fare for child passengers. | RefundableEnum |
cabinClass | priceDetail .fareDescription.child | The cabin class of the fare for child passengers. | CabinClassEnum |
fareClass | priceDetail .fareDescription.child | The Fare class of the child passengers. | String |
mealIndicator | priceDetail .fareDescription.child | A boolean flag indicating if meal is included in the fare for child passengers | Boolean |
infant | priceDetail .fareDescription | An object containing fare details for a infant passenger | Object |
fareComponent | priceDetail .fareDescription.infant | An object containing the net, base, taxes and fees, and total fares for the infant passenger | Object |
taxesAndFees | priceDetail .fareDescription.infant | An array of objects containing the names and values of taxes and fees for the infant passenger | Object |
commission | priceDetail.fareDescription.infant | An array of objects containing the names and values of commission breakdown for the infant passenger. | Object |
seatsRemaining | priceDetail .fareDescription.infant | The number of remaining seats available for infant passengers | Number |
baggage | priceDetail .fareDescription.infant | An object that contains the baggage details for adult passengers. checkIn: The check-in baggage limit for adult passengers. cabin: The cabin baggage limit for adult passengers. | Object |
refundableType | priceDetail .fareDescription.infant | The refundable type of the fare for infant passengers. | RefundableEnum |
cabinClass | priceDetail .fareDescription.infant | The cabin class of the fare for infant passengers. | CabinClassEnum |
fareClass | priceDetail .fareDescription.infant | The Fare class of the infant passengers. | String |
mealIndicator | priceDetail .fareDescription.infant | A boolean flag indicating if meal is included in the fare for infant passengers | Boolean |
segments | root | Details of each flight segment in the itinerary | Array |
flight | segments | Information about the airline operating the flight | Object |
name | segments.flight | Name of the airline | String |
code | segments.flight | Two-letter code of the airline | String |
Number | segments.flight | Flight number | String |
duration | segments | Total duration of the flight segment in minutes | Number |
layoverDuration | segments | Duration of any layover in minutes | Number |
stops | segments | Number of stops in the flight segment | Number |
stopsOverAirports | segments | Array of airports where the flight stops | Array of Objects |
code | segments.stopsOverAirports | Three-letter code of the airport | String |
name | segments.stopsOverAirports | Name of the airport | String |
city | segments.stopsOverAirports | City where the airport is located | String |
cityCode | segments.stopsOverAirports | Two-letter code of the city | String |
country | segments.stopsOverAirports | Country where the airport is located | String |
countryCode | segments.stopsOverAirports | Two-letter code of the country | String |
terminal | segments.stopsOverAirports | Terminal where the flight stops | String |
arrival | segments | Details of the arrival airport | Object |
date | segments.arrival | Date of arrival in YYYYMMDD format | String |
time | segments.arrival | Time of arrival in HHMMSS format | String |
airport | segments.arrival | Details of the arrival airport | Object |
code | segments.arrival.airport | Three-letter code of the airport | String |
name | segments.arrival.airport | Name of the airport | String |
city | segments.arrival.airport | City where the airport is located | String |
cityCode | segments.arrival.airport | Two-letter code of the city | String |
country | segments.arrival.airport | Country where the airport is located | String |
countryCode | segments.arrival.airport | Two-letter code of the country | String |
terminal | segments.arrival.airport | Terminal where the flight arrives | String |
departure | segments | Details of the departure airport. | Object |
date | segments.departure | Date of departure in YYYYMMDD format | String |
time | segments.departure | Time of departure in HHMMSS format | String |
airport | segments.departure | Details of the departure airport | Object |
code | segments.departure.airport | Three-letter code of the airport | String |
name | segments.departure.airport | Name of the airport | String |
city | segments.departure.airport | City where the airport is located | String |
cityCode | segments.departure.airport | Two-letter code of the city | String |
country | segments.departure.airport | Country where the airport is located | String |
countryCode | segments.departure.airport | Two-letter code of the country | String |
terminal | segments.departure.airport | Terminal where the flight departs | String |
operatingAirline | segments | Information about the airline operating the flight (if different from the marketing airline) | Object |
status | root | The current status of the booking | BookingStatusEnum |
GET Endpoint to retreive the booking details.
https://outward-api-dev.farepod.co/api/v1/bookings/:id
The input request body is empty
The output includes an object with the following key fields:
Field | Parent | Description | Data Type |
---|---|---|---|
_id | root | The unique booking ID. | String |
priceDetail | root | The fare details for the flight, including the total fare, net fare, fare components, taxes and fees, seats remaining, baggage details, refundable type, cabin class, and meal indicator for each fare type (adult, child, and infant). | Object |
id | priceDetail | A unique ID for the fare. | String |
totalFare | priceDetail | The total fare for the flight. | Number |
netFare | priceDetail | The net fare for the flight. | Number |
totalBaseFare | priceDetail | The base fare for the flight. | Number |
totalTaxesAndFees | priceDetail | The total taxes and fees for the flight. | Number |
managementFees | priceDetail | Breakup of management fees for the flight. | Object |
managementFees | managementFees | The management fees for the flight | Number |
gstOnManagementFees | managementFees | The gst on management fees for the flight | Number |
totalManagementFees | managementFees | Management Fees + GST on management fees | Number |
commission | priceDetail | Breakup of commission for the flight. | Object |
grossCommission | commission | The gross commission for the flight | Number |
tdsOnCommission | commission | The tds deducted on gross commission for the flight | Number |
netCommission | commission | The net commission after tds deduction for the flight | Number |
fareDescription | priceDetail | An object containing fare details for different passenger types (adult, child and infant). | Object |
adult | priceDetail.fareDescription | An object containing fare details for an adult passenger. | Object |
fareComponent | priceDetail.fareDescription.adult | An object containing the net, base, taxes and fees, and total fares for the adult passenger. | Object |
taxesAndFees | priceDetail.fareDescription.adult | An array of objects containing the names and values of taxes and fees for the adult passenger. | Object |
commission | priceDetail.fareDescription.adult | An array of objects containing the names and values of commission breakdown for the adult passenger. | Object |
seatsRemaining | priceDetail.fareDescription.adult | The number of remaining seats available for adult passengers. | Number |
baggage | priceDetail.fareDescription.adult |
An object that contains the baggage details for adult
passengers: checkIn: The check-in baggage limit for adult passengers. cabin: The cabin baggage limit for adult passengers. |
Object |
refundableType | priceDetail .fareDescription.adult. | The refundable type of the fare for adult passengers. | RefundableEnum |
cabinClass | priceDetail .fareDescription.adult. | The cabin class of the fare for adult passengers. | CabinClassEnum |
fareClass | priceDetail .fareDescription.adult. | The fare class of the adult passengers. | String |
mealIndicator | priceDetail .fareDescription.adult. | A boolean flag indicating if meal is included in the fare for adult passengers. | Boolean |
child | priceDetail .fareDescription | An object containing fare details for a child passenger | Object |
fareComponent | priceDetail .fareDescription.child | An object containing the net, base, taxes and fees, and total fares for the child passenger | Object |
taxesAndFees | priceDetail .fareDescription.child | An array of objects containing the names and values of taxes and fees for the child passenger | Object |
commission | priceDetail.fareDescription.child | An array of objects containing the names and values of commission breakdown for the child passenger. | Object |
seatsRemaining | priceDetail .fareDescription.child | The number of remaining seats available for child passengers | Number |
baggage | priceDetail .fareDescription.child | An object that contains the baggage details for adult passengers. checkIn: The check-in baggage limit for adult passengers. cabin: The cabin baggage limit for adult passengers. | Object |
refundableType | priceDetail .fareDescription.child | The refundable type of the fare for child passengers. | RefundableEnum |
cabinClass | priceDetail .fareDescription.child | The cabin class of the fare for child passengers. | CabinClassEnum |
fareClass | priceDetail .fareDescription.child | The Fare class of the child passengers. | String |
mealIndicator | priceDetail .fareDescription.child | A boolean flag indicating if meal is included in the fare for child passengers | Boolean |
infant | priceDetail .fareDescription | An object containing fare details for a infant passenger | Object |
fareComponent | priceDetail .fareDescription.infant | An object containing the net, base, taxes and fees, and total fares for the infant passenger | Object |
taxesAndFees | priceDetail .fareDescription.infant | An array of objects containing the names and values of taxes and fees for the infant passenger | Object |
commission | priceDetail.fareDescription.infant | An array of objects containing the names and values of commission breakdown for the infant passenger. | Object |
seatsRemaining | priceDetail .fareDescription.infant | The number of remaining seats available for infant passengers | Number |
baggage | priceDetail .fareDescription.infant | An object that contains the baggage details for adult passengers. checkIn: The check-in baggage limit for adult passengers. cabin: The cabin baggage limit for adult passengers. | Object |
refundableType | priceDetail .fareDescription.infant | The refundable type of the fare for infant passengers. | RefundableEnum |
cabinClass | priceDetail .fareDescription.infant | The cabin class of the fare for infant passengers. | CabinClassEnum |
fareClass | priceDetail .fareDescription.infant | The Fare class of the infant passengers. | String |
mealIndicator | priceDetail .fareDescription.infant | A boolean flag indicating if meal is included in the fare for infant passengers | Boolean |
segments | root | Details of each flight segment in the itinerary | Array |
flight | segments | Information about the airline operating the flight | Object |
name | segments.flight | Name of the airline | String |
code | segments.flight | Two-letter code of the airline | String |
Number | segments.flight | Flight number | String |
duration | segments | Total duration of the flight segment in minutes | Number |
layoverDuration | segments | Duration of any layover in minutes | Number |
stops | segments | Number of stops in the flight segment | Number |
stopsOverAirports | segments | Array of airports where the flight stops | Array of Objects |
code | segments.stopsOverAirports | Three-letter code of the airport | String |
name | segments.stopsOverAirports | Name of the airport | String |
city | segments.stopsOverAirports | City where the airport is located | String |
cityCode | segments.stopsOverAirports | Two-letter code of the city | String |
country | segments.stopsOverAirports | Country where the airport is located | String |
countryCode | segments.stopsOverAirports | Two-letter code of the country | String |
terminal | segments.stopsOverAirports | Terminal where the flight stops | String |
arrival | segments | Details of the arrival airport | Object |
date | segments.arrival | Date of arrival in YYYYMMDD format | String |
time | segments.arrival | Time of arrival in HHMMSS format | String |
airport | segments.arrival | Details of the arrival airport | Object |
code | segments.arrival.airport | Three-letter code of the airport | String |
name | segments.arrival.airport | Name of the airport | String |
city | segments.arrival.airport | City where the airport is located | String |
cityCode | segments.arrival.airport | Two-letter code of the city | String |
country | segments.arrival.airport | Country where the airport is located | String |
countryCode | segments.arrival.airport | Two-letter code of the country | String |
terminal | segments.arrival.airport | Terminal where the flight arrives | String |
departure | segments | Details of the departure airport. | Object |
date | segments.departure | Date of departure in YYYYMMDD format | String |
time | segments.departure | Time of departure in HHMMSS format | String |
airport | segments.departure | Details of the departure airport | Object |
code | segments.departure.airport | Three-letter code of the airport | String |
name | segments.departure.airport | Name of the airport | String |
city | segments.departure.airport | City where the airport is located | String |
cityCode | segments.departure.airport | Two-letter code of the city | String |
country | segments.departure.airport | Country where the airport is located | String |
countryCode | segments.departure.airport | Two-letter code of the country | String |
terminal | segments.departure.airport | Terminal where the flight departs | String |
operatingAirline | segments | Information about the airline operating the flight (if different from the marketing airline) | Object |
status | root | The current status of the booking | BookingStatusEnum |
Status of booking returned in book and get booking details API
Value | Description |
---|---|
INITIATED | Booking Created, Passenger Details added and Price fixed but Not Yet booked |
CONFIRMED | Booking Confirmed and Payment Deducted |
AWAITING_PNR | Booking Done but PNR not yet release. You can contact agent for PNR, also you will be mailed when the PNR is added |
FAILED | Booking failed |
CANCELLED | Booking Cancelled (through Amendment) |
ABORTED | Booking INITIATED but then not booked, but ABORTED by the ADMIN / USER |
Value |
---|
ECONOMY |
PREMIUM_ECONOMY |
BUSINESS |
FIRST |
PRIVATE |
Value |
---|
REFUNDABLE |
NON_REFUNDABLE |
PARTIAL_REFUNDABLE |
Value | Description |
---|---|
Mr | Adult Male |
Mrs | Married Female |
Ms | Unmarried Female |
Master | Child or Infant Male |
Value | Description |
---|---|
ALL | All flight will be searched. This is the default behavior |
INSTANT_PNR | Flights with pnr available on book will be searched |
You should put the credentials in the header of the request. The credentials are as follows: There are two types of credentials:
For any queries or support, you can email us at: naveed@codeus.in or aadil@codeus.in