Oct
31
Sat
hotel booking #207
2:32 AM – 2:32 AM
From GBP8190.72
bookings / #207
2:32 AM – 2:32 AM
From GBP8190.72
curl -sS \
"https://example-data.com/api/v1/bookings/207" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/bookings/207"
);
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/207"
);
const booking = (await res.json()) as Booking;import requests
res = requests.get(
"https://example-data.com/api/v1/bookings/207"
)
booking = res.json() {
"id": 207,
"userId": 177,
"kind": "hotel",
"referenceId": 119,
"checkInAt": "2026-10-31T02:32:23.527Z",
"checkOutAt": "2026-11-06T02:32:23.527Z",
"status": "cancelled",
"totalAmount": 8190.72,
"currency": "GBP",
"createdAt": "2026-10-18T02:32:23.527Z"
}