Apr
5
Sun
flight booking #129
4:48 PM – 4:48 PM
From AED8685.70
bookings / #129
4:48 PM – 4:48 PM
From AED8685.70
curl -sS \
"https://example-data.com/api/v1/bookings/129" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/bookings/129"
);
const booking = await res.json();import type { Booking } from "https://example-data.com/types/bookings.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/bookings/129"
);
const booking = (await res.json()) as Booking;import requests
res = requests.get(
"https://example-data.com/api/v1/bookings/129"
)
booking = res.json() {
"id": 129,
"userId": 24,
"kind": "flight",
"referenceId": 199,
"checkInAt": "2026-04-05T16:48:54.900Z",
"checkOutAt": "2026-04-05T16:48:54.900Z",
"status": "confirmed",
"totalAmount": 8685.7,
"currency": "AED",
"createdAt": "2026-02-03T16:48:54.900Z"
}