v1

latestOpenAPI 3.0.02026-07-247251950.2 KB
Manage bookings

Retrieve a booking

Overview

Get complete details for a specific booking by its booking ID. Returns all booking information including status, guest details, pricing, and cancellation policies.

When to Use

  • Booking details page - Display complete booking information
  • Status checks - Verify current booking status
  • Confirmation lookup - Retrieve booking confirmation details
  • Support queries - Look up booking information for customer service

What You Get

  • Complete booking details - All information about the booking
  • Booking status - Current status (confirmed, cancelled, etc.)
  • Guest information - Name, email, and contact details
  • Stay information - Check-in/check-out dates, hotel details
  • Pricing breakdown - Total cost, taxes, fees, and payment status
  • Cancellation policies - Terms and conditions for cancellation
  • Hotel confirmation - Hotel confirmation code and reference

Quick Start

Provide the bookingId in the URL path. Returns complete booking details including status and all associated information.

get/bookings/{bookingId}

Path parameters

bookingIdstring required

(Required) The unique identifier of the booking you would like to update.

Query parameters

timeoutnumber float

request timeout in seconds

Response

OK

Example response

{
  "data": {
    "addons": [
      {
        "addon": "uber",
        "value": 50,
        "currency": "USD",
        "addonDetails": {
          "package_id": 1,
          "destination_code": "ES",
          "start_date": "2025-12-05",
          "end_date": "2025-12-10"
        }
      }
    ],
    "customTags": {
      "SOURCE": "GOOGLE",
      "TIER": "GOLD"
    }
  }
}