Jun
16
Tue
flight booking #3
3:40 PM – 3:40 PM
From SGD 3141.86
Overview
bookings / #3
3:40 PM – 3:40 PM
From SGD 3141.86
Request
curl example
curl -sS \ "https://example-data.com/api/v1/bookings/3" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/bookings/3" ); 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/3"
);
const booking = (await res.json()) as Booking; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/bookings/3"
)
booking = res.json() Response
{
"id": 3,
"userId": 163,
"kind": "flight",
"referenceId": 27,
"checkInAt": "2026-06-16T15:40:27.086Z",
"checkOutAt": "2026-06-16T15:40:27.086Z",
"status": "pending",
"totalAmount": 3141.86,
"currency": "SGD",
"createdAt": "2026-05-13T15:40:27.086Z"
}