Nov
23
Sun
flight booking #168
4:47 AM – 4:47 AM
From AED 7264.24
Overview
bookings / #168
4:47 AM – 4:47 AM
From AED 7264.24
Request
curl example
curl -sS \ "https://example-data.com/api/v1/bookings/168" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/bookings/168" ); 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/168"
);
const booking = (await res.json()) as Booking; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/bookings/168"
)
booking = res.json() Response
{
"id": 168,
"userId": 161,
"kind": "flight",
"referenceId": 305,
"checkInAt": "2025-11-23T04:47:31.618Z",
"checkOutAt": "2025-11-23T04:47:31.618Z",
"status": "pending",
"totalAmount": 7264.24,
"currency": "AED",
"createdAt": "2025-09-16T04:47:31.618Z"
}