Apr
28
Tue
hotel booking #187
8:13 PM – 8:13 PM
From SGD 5999.95
Overview
bookings / #187
8:13 PM – 8:13 PM
From SGD 5999.95
Request
curl example
curl -sS \ "https://example-data.com/api/v1/bookings/187" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/bookings/187" ); const booking = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/bookings.d.ts https://example-data.com/types/bookings.d.ts
import type { Booking } from "./types/bookings";
const res = await fetch(
"https://example-data.com/api/v1/bookings/187"
);
const booking = (await res.json()) as Booking; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/bookings/187"
)
booking = res.json() Response
{
"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"
}