Get reservation by id
curl --request GET \
--url https://api.conduit.ai/v1/reservations/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.conduit.ai/v1/reservations/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.conduit.ai/v1/reservations/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.conduit.ai/v1/reservations/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.conduit.ai/v1/reservations/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.conduit.ai/v1/reservations/{id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.conduit.ai/v1/reservations/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": {
"id": "rs77c0dy0mgdpzmqz6tesry8w184002s",
"workspace_id": "j57demo8f8x7c9v0n2q4r6t8y1u3i5o",
"contact_id": "ph77c0dy0mgdpzmqz6tesry8w184002s",
"listing_id": "listing-demo-12345",
"pms_platform": "Guesty",
"external_id": "guesty-demo-res-001",
"channel_name": "Airbnb",
"channel_reservation_id": "HMDEMO1234",
"confirmation_code": "HMDEMO1234",
"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": "Jordan Guest",
"first_name": "Jordan",
"last_name": "Guest",
"email": "jordan.guest@example.com",
"phone": "+14155550123",
"country": "US",
"city": "San Francisco",
"locale": "en",
"external_account_id": "airbnb_user_demo_001"
},
"payment": {
"is_paid": true,
"total_price": 920.5,
"currency": "USD",
"outstanding_balance": 0
},
"airbnb_payment": {
"currency": "USD",
"expected_payout_amount": 782.4,
"expected_payout_amount_before_taxes": 735.25,
"listing_base_price": 860,
"listing_cancellation_payout": null,
"listing_cancellation_host_fee": null,
"total_paid_amount": 940.5,
"transient_occupancy_tax_paid_amount": 58.1,
"airbnb_collected_tax_amount": 42,
"pass_through_tax_amount_paid_to_host": 16.1,
"pass_through_tax_expected_amount": 16.1,
"host_fee_base": 25.8,
"host_fee_vat": 0,
"guest_fee_base": 72,
"guest_fee_vat": 0,
"tax_withholding_amount": null
},
"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"
}
}{
"error": "Invalid workspace id"
}{
"error": "Invalid workspace id"
}{
"error": "Invalid workspace id"
}{
"error": "Invalid workspace id"
}{
"error": "Invalid workspace id"
}Reservations
Get Reservation
Retrieve a reservation by Conduit id, including guest identity, payment summary, normalized Airbnb payouts, and PMS metadata.
GET
/
v1
/
reservations
/
{id}
Get reservation by id
curl --request GET \
--url https://api.conduit.ai/v1/reservations/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.conduit.ai/v1/reservations/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.conduit.ai/v1/reservations/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.conduit.ai/v1/reservations/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.conduit.ai/v1/reservations/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.conduit.ai/v1/reservations/{id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.conduit.ai/v1/reservations/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": {
"id": "rs77c0dy0mgdpzmqz6tesry8w184002s",
"workspace_id": "j57demo8f8x7c9v0n2q4r6t8y1u3i5o",
"contact_id": "ph77c0dy0mgdpzmqz6tesry8w184002s",
"listing_id": "listing-demo-12345",
"pms_platform": "Guesty",
"external_id": "guesty-demo-res-001",
"channel_name": "Airbnb",
"channel_reservation_id": "HMDEMO1234",
"confirmation_code": "HMDEMO1234",
"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": "Jordan Guest",
"first_name": "Jordan",
"last_name": "Guest",
"email": "jordan.guest@example.com",
"phone": "+14155550123",
"country": "US",
"city": "San Francisco",
"locale": "en",
"external_account_id": "airbnb_user_demo_001"
},
"payment": {
"is_paid": true,
"total_price": 920.5,
"currency": "USD",
"outstanding_balance": 0
},
"airbnb_payment": {
"currency": "USD",
"expected_payout_amount": 782.4,
"expected_payout_amount_before_taxes": 735.25,
"listing_base_price": 860,
"listing_cancellation_payout": null,
"listing_cancellation_host_fee": null,
"total_paid_amount": 940.5,
"transient_occupancy_tax_paid_amount": 58.1,
"airbnb_collected_tax_amount": 42,
"pass_through_tax_amount_paid_to_host": 16.1,
"pass_through_tax_expected_amount": 16.1,
"host_fee_base": 25.8,
"host_fee_vat": 0,
"guest_fee_base": 72,
"guest_fee_vat": 0,
"tax_withholding_amount": null
},
"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"
}
}{
"error": "Invalid workspace id"
}{
"error": "Invalid workspace id"
}{
"error": "Invalid workspace id"
}{
"error": "Invalid workspace id"
}{
"error": "Invalid workspace id"
}Authorizations
Conduit API token. Use Authorization: Bearer <token>. Read/write endpoints require a token with write access.
Path Parameters
Reservation id.
Example:
"rs77c0dy0mgdpzmqz6tesry8w184002s"
Query Parameters
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.
A reservation synced from the workspace's PMS integration. id is the Conduit-stable identifier; external_id is the PMS's own reservation id.
Show child attributes
Show child attributes
Was this page helpful?
⌘I