Skip to main content
GET
/
v1
/
reservations
/
{id}
Get reservation by id
curl --request GET \
  --url https://api.conduit.ai/v1/reservations/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "rs77c0dy0mgdpzmqz6tesry8w184002s",
    "workspace_id": "j57demo8f8x7c9v0n2q4r6t8y1u3i5o",
    "contact_id": "ph77c0dy0mgdpzmqz6tesry8w184002s",
    "listing_id": "12345",
    "pms_platform": "hostaway",
    "external_id": "39487305",
    "channel_name": "Airbnb",
    "channel_reservation_id": "HMABCXYZ",
    "confirmation_code": "HMABCXYZ",
    "status": "confirmed",
    "source": "airbnb",
    "arrival_date": "2026-05-01",
    "arrival_at": "2026-05-01T15:00:00.000Z",
    "departure_date": "2026-05-05",
    "departure_at": "2026-05-05T11:00:00.000Z",
    "num_nights": 4,
    "number_of_guests": 2,
    "number_of_adults": 2,
    "number_of_children": 0,
    "number_of_infants": 0,
    "number_of_pets": 0,
    "guest": {
      "name": "Taylor Reid",
      "first_name": "Taylor",
      "last_name": "Reid",
      "email": "taylor.reid@example.com",
      "phone": "+14155550123",
      "country": "US",
      "city": "San Francisco",
      "locale": "en",
      "external_account_id": "airbnb_user_789"
    },
    "payment": {
      "is_paid": true,
      "total_price": 920.5,
      "currency": "USD",
      "outstanding_balance": 0
    },
    "door_code": null,
    "key_code": null,
    "guest_note": null,
    "ai_paused": false,
    "created_at": "2026-04-18T17:20:00.000Z",
    "updated_at": "2026-04-18T17:20:00.000Z"
  }
}

Authorizations

Authorization
string
header
required

Conduit API token. Use Authorization: Bearer <token>. Read/write endpoints require a token with write access.

Path Parameters

id
string
required

Reservation id.

Example:

"rs77c0dy0mgdpzmqz6tesry8w184002s"

Query Parameters

workspace_id
string

Optional workspace override. If omitted, Conduit resolves the reservation's workspace automatically.

Example:

"j57demo8f8x7c9v0n2q4r6t8y1u3i5o"

Response

Reservation

Single reservation response including guest, payment, and PMS context.

data
object
required

A reservation synced from the workspace's PMS integration. id is the Conduit-stable identifier; external_id is the PMS's own reservation id.