May
12
Tue
hotel booking #173
3:56 PM – 3:56 PM
From SGD 8135.59
Overview
bookings / #173
3:56 PM – 3:56 PM
From SGD 8135.59
Request
curl example
curl -sS \ "https://example-data.com/api/v1/bookings/173" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/bookings/173" ); 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/173"
);
const booking = (await res.json()) as Booking; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/bookings/173"
)
booking = res.json() Response
{
"id": 173,
"userId": 99,
"kind": "hotel",
"referenceId": 70,
"checkInAt": "2026-05-12T15:56:01.062Z",
"checkOutAt": "2026-05-23T15:56:01.062Z",
"status": "completed",
"totalAmount": 8135.59,
"currency": "SGD",
"createdAt": "2026-05-07T15:56:01.062Z"
}