Skip to main content
The /bookings/{id} endpoint retrieves a single booking in full detail by its integer id. Use it to look up a record after a webhook, resolve a booking linked in another system or refresh stale data. The response is the same full Booking object as the list endpoint. There’s no abbreviated version.

Endpoint

Required scope: bookings.read

Path parameters

integer
required
The unique integer identifier of the booking to retrieve. Obtain this value from the id field on any Booking object returned by GET /bookings.

Example request

Response schema

object
The matching Booking object.

Example response

Requesting an id that belongs to a booking in another user’s account returns 404, not 403. The API never confirms or denies that a booking outside your account exists, so you cannot enumerate other users’ booking ids through error codes.

Errors