Jun
8
Mon
property booking #65
12:00 PM – 12:00 PM
From AUD3793.66
bookings / #65
12:00 PM – 12:00 PM
From AUD3793.66
curl -sS \
"https://example-data.com/api/v1/bookings/65" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/bookings/65"
);
const booking = await res.json();import type { Booking } from "https://example-data.com/types/bookings.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/bookings/65"
);
const booking = (await res.json()) as Booking;import requests
res = requests.get(
"https://example-data.com/api/v1/bookings/65"
)
booking = res.json() {
"id": 65,
"userId": 89,
"kind": "property",
"referenceId": 173,
"checkInAt": "2026-06-08T12:00:39.296Z",
"checkOutAt": "2026-06-18T12:00:39.296Z",
"status": "completed",
"totalAmount": 3793.66,
"currency": "AUD",
"createdAt": "2026-05-14T12:00:39.296Z"
}