Jul
24
Thu
flight booking #117
7:37 PM – 7:37 PM
From JPY 7066.78
Overview
bookings / #117
7:37 PM – 7:37 PM
From JPY 7066.78
Request
curl example
curl -sS \ "https://example-data.com/api/v1/bookings/117" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/bookings/117" ); 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/117"
);
const booking = (await res.json()) as Booking; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/bookings/117"
)
booking = res.json() Response
{
"id": 117,
"userId": 230,
"kind": "flight",
"referenceId": 210,
"checkInAt": "2025-07-24T19:37:03.437Z",
"checkOutAt": "2025-07-24T19:37:03.437Z",
"status": "confirmed",
"totalAmount": 7066.78,
"currency": "JPY",
"createdAt": "2025-05-09T19:37:03.437Z"
}