Jan
18
Sun
flight booking #246
3:11 PM – 3:11 PM
From GBP 9069.51
Overview
bookings / #246
3:11 PM – 3:11 PM
From GBP 9069.51
Request
curl example
curl -sS \ "https://example-data.com/api/v1/bookings/246" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/bookings/246" ); 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/246"
);
const booking = (await res.json()) as Booking; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/bookings/246"
)
booking = res.json() Response
{
"id": 246,
"userId": 130,
"kind": "flight",
"referenceId": 239,
"checkInAt": "2026-01-18T15:11:54.363Z",
"checkOutAt": "2026-01-18T15:11:54.363Z",
"status": "pending",
"totalAmount": 9069.51,
"currency": "GBP",
"createdAt": "2025-12-14T15:11:54.363Z"
}