Apr
28
Tue
hotel booking #187
8:13 PM – 8:13 PM
From SGD5999.95
bookings / #187
8:13 PM – 8:13 PM
From SGD5999.95
curl -sS \
"https://example-data.com/api/v1/bookings/187" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/bookings/187"
);
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/187"
);
const booking = (await res.json()) as Booking;import requests
res = requests.get(
"https://example-data.com/api/v1/bookings/187"
)
booking = res.json() {
"id": 187,
"userId": 171,
"kind": "hotel",
"referenceId": 37,
"checkInAt": "2026-04-28T20:13:21.628Z",
"checkOutAt": "2026-05-01T20:13:21.628Z",
"status": "cancelled",
"totalAmount": 5999.95,
"currency": "SGD",
"createdAt": "2026-03-21T20:13:21.628Z"
}