Jun
26
Thu
hotel booking #142
2:10 AM – 2:10 AM
From SGD 653.56
Overview
bookings / #142
2:10 AM – 2:10 AM
From SGD 653.56
Request
curl example
curl -sS \ "https://example-data.com/api/v1/bookings/142" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/bookings/142" ); 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/142"
);
const booking = (await res.json()) as Booking; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/bookings/142"
)
booking = res.json() Response
{
"id": 142,
"userId": 88,
"kind": "hotel",
"referenceId": 45,
"checkInAt": "2025-06-26T02:10:19.242Z",
"checkOutAt": "2025-07-09T02:10:19.242Z",
"status": "cancelled",
"totalAmount": 653.56,
"currency": "SGD",
"createdAt": "2025-04-12T02:10:19.242Z"
}