APIs to perform search, checkout and book an air pnr
API reference
/Air
/- Get unused credits for a traveler
Get air itineraries
Get flight attributes
Get selected itinerary
Get Airlines Information (Air)
Get flight checkout details
Get flight seat map
Initiate booking
Validate air itinerary
Validate air itinerary (interim)
Create air pnr
Cancel Air Pnr
Get PNR exchange details
Modify Search
Modify Book
Edit PNR
Get Special Service Requests (SSR)
Get Special Service Requests (SSR) for a Category
Returns the Air Raw Fare Rules for a Segment or Pnr
Get unused credits for a company
Get transferable unused credits for a company
Migrate Unused Credits of a traveler to and fro Company Credits
Get unused credits for a...
Air API (v2)
Download OpenAPI description
Languages
Servers
Sandbox URL
https://api-ext-sboxmeta.partners.spotnana.com/
Spotnana mock server
https://developer.spotnana.com/_mock/openapi/airapi/
Bodyapplication/jsonrequired
The unique ID (identifying the current workflow) returned by the backend in the air search results response (AirSearchResponse.searchId) of the previous leg. If set, the rateOptionId and userId must also be specified.
- Sandbox URLhttps://api-ext-sboxmeta.partners.spotnana.com/v2/air/fare-rules/fetch
- Spotnana mock serverhttps://developer.spotnana.com/_mock/openapi/airapi/v2/air/fare-rules/fetch
- curl
- JavaScript
- Node.js
- Python
curl -i -X POST \
https://api-ext-sboxmeta.partners.spotnana.com/v2/air/fare-rules/fetch \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"searchId": "string",
"rateOptionId": "string",
"pnrId": "1213124111",
"userId": "4974a66b-7493-4f41-908c-58ba81093947"
}'Response
application/json
{ "legRuleInfos": [ { … } ] }
Request
Returns a list of unused credits associated with a traveler along with details such as the PNR ID, trip ID, airline details, credit expiry date, and the source of booking (e.g., NDC). Travelers can redeem unused credit for future bookings with the same airline where the credit was earned.
Security
Bearer
- Sandbox URLhttps://api-ext-sboxmeta.partners.spotnana.com/v3/air/fetch-traveler-unused-credits
- Spotnana mock serverhttps://developer.spotnana.com/_mock/openapi/airapi/v3/air/fetch-traveler-unused-credits
- curl
- JavaScript
- Node.js
- Python
curl -i -X POST \
https://api-ext-sboxmeta.partners.spotnana.com/v3/air/fetch-traveler-unused-credits \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"travelerInfo": {
"userId": {
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08"
}
}
}'Response
application/json
{ "unusedCreditInfo": [ { … } ] }
- Sandbox URLhttps://api-ext-sboxmeta.partners.spotnana.com/v3/air/company-unused-credits/list
- Spotnana mock serverhttps://developer.spotnana.com/_mock/openapi/airapi/v3/air/company-unused-credits/list
- curl
- JavaScript
- Node.js
- Python
curl -i -X POST \
https://api-ext-sboxmeta.partners.spotnana.com/v3/air/company-unused-credits/list \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"companyId": {
"id": "edd5b835-8001-430c-98f8-fedeccebe4cf"
},
"companyCreditFilter": {
"supplier": "SABRE",
"selectedAirlines": [
"AA"
],
"expiryDateRange": {
"expiryDateStart": {
"iso8601": "2017-07-21"
},
"expiryDateEnd": {
"iso8601": "2017-07-21"
}
},
"fopLabel": [
"Company Central Card",
"Personal Card"
],
"pcc": "LA5K"
},
"offset": 0
}'Response
application/json
{ "unusedCreditInfos": [ { … } ], "paginationParams": { "offset": 0, "totalRecords": 100 }, "companyFopLabels": [ "Company Central Card", "Corporate Amex" ] }