• Mail us
  • Book a Meeting
  • Call us
  • Chat with us

GDS

Amadeus Enterprise API for Flight Search: Fare_InformativePricingWithoutPNR - A Complete Guide


Introduction

The Amadeus Enterprise API provides a powerful suite of tools for travel agencies, airlines and other travel related businesses to access real time flight pricing and availability. One of its key features is Fare_InformativePricingWithoutPNR, which allows users to retrieve detailed fare information without requiring a Passenger Name Record (PNR). This API is particularly useful for fare comparisons, dynamic pricing strategies and pre booking analysis.


In this article, we will explore:

  • The purpose and benefits of Fare_InformativePricingWithoutPNR
  • How the API works
  • Request and response structure
  • Use cases and best practices
  • Common challenges and troubleshooting tips

What is Fare_InformativePricingWithoutPNR?

The Fare_InformativePricingWithoutPNR API enables travel providers to fetch comprehensive fare breakdowns, including:

  • Base fare
  • Taxes and fees
  • Baggage allowances
  • Fare rules (refundability, change policies)
  • Cabin class pricing

Unlike traditional pricing APIs that require a PNR (booking reference), this API allows fare calculation without any prior reservation, making it ideal for pre-booking analysis and fare comparisons.

Key Benefits

  • No PNR Required : Get fare details without creating a booking.
  • Real Time Pricing : Access up to date fare information.
  • Detailed Breakdown : View taxes, fees and fare conditions.
  • Multi Airline Support : Compare fares across different carriers.

Flexible Search : Supports one way, round trip, and multi city pricing.

How the API Works

The Fare_InformativePricingWithoutPNR API follows a REST based architecture, returning responses in JSON or XML format.

Request Structure

The API requires the following key parameters:

  • Origin & Destination (IATA codes)
  • Travel Dates
  • Passenger Types (ADT, CHD, INF)
  • Cabin Class (Economy, Business, First)
  • Airline Preferences (Optional)


Sample Request (JSON)


1{
2  "originDestinations": [
3    {
4      "id": "1",
5      "originLocationCode": "JFK",
6      "destinationLocationCode": "LAX",
7      "departureDateTime": "2024-10-15"
8    }
9  ],
10  "travelers": [
11    {
12      "id": "1",
13      "travelerType": "ADT"
14    }
15  ],
16  "sources": ["GDS"],
17  "currencyCode": "USD",
18  "cabin": "ECONOMY"
19}


Response Structure

The API returns a detailed breakdown of fares, including:

  • Fare Amount (Base fare + Taxes)
  • Baggage Allowance
  • Fare Rules (Refundable/Non-refundable, Change Fees)
  • Flight Segments (Airline, Flight Number, Departure/Arrival Times)


Sample Response (JSON)


1{
2  "data": {
3    "type": "flight-offers-pricing",
4    "flightOffers": [
5      {
6        "type": "flight-offer",
7        "id": "1",
8        "price": {
9          "currency": "USD",
10          "total": "299.99",
11          "base": "250.00",
12          "taxes": [
13            {
14              "code": "US",
15              "amount": "49.99"
16            }
17          ]
18        },
19        "baggageAllowance": {
20          "quantity": "1",
21          "weight": "23kg"
22        },
23        "fareRules": {
24          "changePenalty": "50.00",
25          "refundable": false
26        }
27      }
28    ]
29  }
30}


Purpose of Fare_InformativePricingWithoutPNR

  • Pre-Booking Fare Check: Retrieve detailed fare breakdowns before creating a PNR.
  • Shopping & Quotation: Display available fare options to the customer without locking inventory.
  • Dynamic Pricing: Recalculate fares as per real-time availability and rules.
  • Corporate Travel: Useful for businesses that need to validate negotiated fares or corporate rates.
  • Multiple Scenarios: Handles both simple and complex itineraries including one-way, round-trip, and multi-segment journeys.

Typical Use Cases

  1. B2B Travel Platforms: Agents want to compare prices before creating a booking.
  2. Corporate Booking Tools: Validate contracted fares or price estimates.
  3. Custom Itinerary Builders: Dynamic recalculation of fares based on user-selected flights.
  4. Mobile Travel Apps: Display fare options instantly for selected itineraries.

Best Practices

  • Token Management: Use efficient token caching to avoid frequent authentication calls.
  • Use Real-Time Data: Always use up-to-date availability for pricing accuracy.
  • Graceful Fallback: If no fares are returned, offer alternative dates or carriers.
  • Combine with Seat Availability API: Use Amadeus Seat Availability APIs for better user experience.
  • Caching Strategy: Cache fare results short-term to reduce API load during user browsing.

Error Handling

HTTP Code

Meaning

Possible Cause

400 Bad Request

Invalid input

Missing/invalid fields like dates or airport codes.

401 Unauthorized

Invalid token

Access token expired or invalid.

404 Not Found

No fares found

No available pricing for the given criteria.

500 Internal Server Error

System issue

Amadeus service downtime or configuration issue.

Tip: Always validate input and gracefully handle empty results or errors in your application to ensure a smooth user experience.


Integration Steps

To integrate Fare_InformativePricingWithoutPNR into your application:

  1. Sign Up for Enterprise Access: Contact Amadeus via their developer portal to negotiate an Enterprise contract.
  2. Obtain Credentials: Secure an API key and test environment access.
  3. Study Documentation: Review the official Amadeus Enterprise API documentation for endpoint details and WSDL files.
  4. Build the Request: Use a SOAP client (e.g., in Python with zeep  or Java with JAX-WS) to construct and send requests.
  5. Test in Sandbox: Validate the integration with test data before moving to production.

Deploy and Monitor: Launch the feature and track performance using Amadeus’ usage analytics.

Conclusion

The Amadeus Fare_InformativePricingWithoutPNR API is a powerful tool for retrieving real-time fare information without needing a PNR. It is ideal for fare comparisons, dynamic pricing, and pre booking analysis. By understanding its request/response structure and following best practices, travel businesses can enhance their pricing strategies and improve customer experience.

For more details, visit the Amadeus Developer Portal or explore the official API documentation.

Supercharge Your Travel Operations with Seamless Tech, Don’t Wait - Contact Us Today and Let’s Make It Happen!

0