Mar
21
Sun
flight booking #461
5:11 AM – 5:11 AM
From AED 6420.40
Overview
bookings / #461
5:11 AM – 5:11 AM
From AED 6420.40
Request
curl example
curl -sS \ "https://example-data.com/api/v1/bookings/461" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/bookings/461" ); 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/461"
);
const booking = (await res.json()) as Booking; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/bookings/461"
)
booking = res.json() Response
{
"id": 461,
"userId": 218,
"kind": "flight",
"referenceId": 116,
"checkInAt": "2027-03-21T05:11:45.612Z",
"checkOutAt": "2027-03-21T05:11:45.612Z",
"status": "cancelled",
"totalAmount": 6420.4,
"currency": "AED",
"createdAt": "2027-01-17T05:11:45.612Z"
}