v1

latestOpenAPI 3.0.02026-07-247251950.2 KB
Flight Bookings

Get booking details

Overview

Retrieve complete details of a confirmed flight booking using its unique booking ID.

When to Use

  • Booking confirmation page - Display full itinerary after booking completes
  • Booking management - Retrieve details for an existing reservation
  • Itinerary display - Show passengers, segments, and confirmation numbers
  • Status checks - Verify booking status for a given booking ID

What You Get

  • Complete itinerary with all flight segments and connection details
  • Passenger manifest with names, documents, and seat assignments
  • Booking status and provider confirmation reference
  • Pricing breakdown including taxes and fees paid

Key Features

  • Full booking record: Returns all data associated with the confirmed booking
  • Provider reference: Includes the provider-side booking confirmation number
  • Passenger details: Complete passenger information for all travelers

Quick Start

Provide the bookingId (returned from POST /flights/bookings) in the URL path. Returns the complete booking record.

get/flights/bookings/{bookingId}

Path parameters

bookingIdstring required

The unique booking identifier

Response

Successful response

Example response

{
  "data": [
    {
      "booking": {
        "selectedServices": [
          {
            "serviceId": "g6Rwc2lk2SQwMTlkMDY3NC1hMzQzLTc0OGEtYmYyYS1jMDk4ZmNjMTk2ZGGhcMtAfB6PXCj1w6Fjo1VTRA==",
            "quantity": 1
          }
        ]
      }
    }
  ]
}