Oct
4
Sun
hotel booking #188
7:34 AM – 7:34 AM
From AUD8041.69
bookings / #188
7:34 AM – 7:34 AM
From AUD8041.69
curl -sS \
"https://example-data.com/api/v1/bookings/188" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/bookings/188"
);
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/188"
);
const booking = (await res.json()) as Booking;import requests
res = requests.get(
"https://example-data.com/api/v1/bookings/188"
)
booking = res.json() {
"id": 188,
"userId": 163,
"kind": "hotel",
"referenceId": 38,
"checkInAt": "2026-10-04T07:34:15.317Z",
"checkOutAt": "2026-10-06T07:34:15.317Z",
"status": "pending",
"totalAmount": 8041.69,
"currency": "AUD",
"createdAt": "2026-08-26T07:34:15.317Z"
}