# Get a booking by its id **GET /api/Bookings/{id}** ## Servers - http://api.example.com: http://api.example.com () ## Parameters ### Path parameters - **id** (string(uuid)) The id of the booking ## Responses ### 200 Returns the booking with the given id #### Body: application/json (object) - **confirmationId** (string(uuid)) - **checkInDate** (string(date)) - **checkOutDate** (string(date)) - **price** (number(double)) - **numberOfAdults** (integer(int32)) - **numberOfChildren** (integer(int32)) - **roomNumbers** (array[integer(int32)] | null) - **guestFullName** (string | null) - **guestId** (string(uuid)) - **hotelName** (string | null) - **hotelId** (string(uuid)) - **Additional properties are NOT allowed** () ### 404 If the booking is not found [Powered by Bump.sh](https://bump.sh)