---
title: "Get booking details"
method: GET
path: "/booking_details"
---

# Get booking details

`GET /booking_details`

Retrieves details for a specific booking by ID or guest name.

## Query parameters

- `booking_id` string
- `guest_name` string

## Response `200`

Booking details retrieved successfully.

- object
  - `error` boolean
  - `data` object
    - `custom_booking_id` string
    - `hotel_name` string
    - `hotel_location` string
    - `guest_name` string
    - `check_in_date` string
    - `check_out_date` string
    - `num_rooms` integer
    - `total_price` number, float
  - `message` string

## Other responses

- `400` — Bad request. Missing parameters.
- `401` — Unauthorized. Invalid or expired token.
- `404` — Booking not found.

---

[API](https://skmtc.dev/google/apis/hotel-booker-api.md) · [All operations](https://skmtc.dev/google/apis/hotel-booker-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/google/hotel-booker-api/revisions/0d5ee895a4ed/schema)
