Nov
9
Sun
property booking #118
4:02 PM – 4:02 PM
From AED1932.50
bookings / #118
4:02 PM – 4:02 PM
From AED1932.50
curl -sS \
"https://example-data.com/api/v1/bookings/118" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/bookings/118"
);
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/118"
);
const booking = (await res.json()) as Booking;import requests
res = requests.get(
"https://example-data.com/api/v1/bookings/118"
)
booking = res.json() {
"id": 118,
"userId": 92,
"kind": "property",
"referenceId": 166,
"checkInAt": "2025-11-09T16:02:20.234Z",
"checkOutAt": "2025-11-23T16:02:20.234Z",
"status": "cancelled",
"totalAmount": 1932.5,
"currency": "AED",
"createdAt": "2025-11-07T16:02:20.234Z"
}