Sep
18
Thu
flight booking #437
7:00 AM – 7:00 AM
From JPY 5186.81
Overview
bookings / #437
7:00 AM – 7:00 AM
From JPY 5186.81
Request
curl example
curl -sS \ "https://example-data.com/api/v1/bookings/437" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/bookings/437" ); 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/437"
);
const booking = (await res.json()) as Booking; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/bookings/437"
)
booking = res.json() Response
{
"id": 437,
"userId": 9,
"kind": "flight",
"referenceId": 123,
"checkInAt": "2025-09-18T07:00:46.959Z",
"checkOutAt": "2025-09-18T07:00:46.959Z",
"status": "confirmed",
"totalAmount": 5186.81,
"currency": "JPY",
"createdAt": "2025-09-04T07:00:46.959Z"
}