Mar
7
Sun
flight booking #299
6:47 AM – 6:47 AM
From CAD 7673.29
Overview
bookings / #299
6:47 AM – 6:47 AM
From CAD 7673.29
Request
curl example
curl -sS \ "https://example-data.com/api/v1/bookings/299" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/bookings/299" ); 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/299"
);
const booking = (await res.json()) as Booking; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/bookings/299"
)
booking = res.json() Response
{
"id": 299,
"userId": 85,
"kind": "flight",
"referenceId": 332,
"checkInAt": "2027-03-07T06:47:40.919Z",
"checkOutAt": "2027-03-07T06:47:40.919Z",
"status": "cancelled",
"totalAmount": 7673.29,
"currency": "CAD",
"createdAt": "2027-02-26T06:47:40.919Z"
}