Nov
6
Thu
property booking #154
10:12 AM – 10:12 AM
From AED6971.78
bookings / #154
10:12 AM – 10:12 AM
From AED6971.78
curl -sS \
"https://example-data.com/api/v1/bookings/154" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/bookings/154"
);
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/154"
);
const booking = (await res.json()) as Booking;import requests
res = requests.get(
"https://example-data.com/api/v1/bookings/154"
)
booking = res.json() {
"id": 154,
"userId": 57,
"kind": "property",
"referenceId": 79,
"checkInAt": "2025-11-06T10:12:06.436Z",
"checkOutAt": "2025-11-17T10:12:06.436Z",
"status": "cancelled",
"totalAmount": 6971.78,
"currency": "AED",
"createdAt": "2025-10-02T10:12:06.436Z"
}