Dec
16
Tue
flight booking #242
9:35 PM – 9:35 PM
From AUD 2733.52
Overview
bookings / #242
9:35 PM – 9:35 PM
From AUD 2733.52
Request
curl example
curl -sS \ "https://example-data.com/api/v1/bookings/242" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/bookings/242" ); 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/242"
);
const booking = (await res.json()) as Booking; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/bookings/242"
)
booking = res.json() Response
{
"id": 242,
"userId": 198,
"kind": "flight",
"referenceId": 260,
"checkInAt": "2025-12-16T21:35:05.245Z",
"checkOutAt": "2025-12-16T21:35:05.245Z",
"status": "confirmed",
"totalAmount": 2733.52,
"currency": "AUD",
"createdAt": "2025-10-09T21:35:05.245Z"
}