Oct
3
Fri
hotel booking #170
9:46 AM – 9:46 AM
From SGD6965.34
bookings / #170
9:46 AM – 9:46 AM
From SGD6965.34
curl -sS \
"https://example-data.com/api/v1/bookings/170" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/bookings/170"
);
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/170"
);
const booking = (await res.json()) as Booking;import requests
res = requests.get(
"https://example-data.com/api/v1/bookings/170"
)
booking = res.json() {
"id": 170,
"userId": 156,
"kind": "hotel",
"referenceId": 122,
"checkInAt": "2025-10-03T09:46:08.044Z",
"checkOutAt": "2025-10-05T09:46:08.044Z",
"status": "pending",
"totalAmount": 6965.34,
"currency": "SGD",
"createdAt": "2025-07-28T09:46:08.044Z"
}