Jul
15
Wed
hotel booking #148
5:58 PM – 5:58 PM
From GBP5059.00
bookings / #148
5:58 PM – 5:58 PM
From GBP5059.00
curl -sS \
"https://example-data.com/api/v1/bookings/148" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/bookings/148"
);
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/148"
);
const booking = (await res.json()) as Booking;import requests
res = requests.get(
"https://example-data.com/api/v1/bookings/148"
)
booking = res.json() {
"id": 148,
"userId": 75,
"kind": "hotel",
"referenceId": 66,
"checkInAt": "2026-07-15T17:58:27.816Z",
"checkOutAt": "2026-07-20T17:58:27.816Z",
"status": "completed",
"totalAmount": 5059,
"currency": "GBP",
"createdAt": "2026-06-14T17:58:27.816Z"
}