Feb
9
Mon
flight booking #216
4:26 PM – 4:26 PM
From AED5707.00
bookings / #216
4:26 PM – 4:26 PM
From AED5707.00
curl -sS \
"https://example-data.com/api/v1/bookings/216" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/bookings/216"
);
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/216"
);
const booking = (await res.json()) as Booking;import requests
res = requests.get(
"https://example-data.com/api/v1/bookings/216"
)
booking = res.json() {
"id": 216,
"userId": 175,
"kind": "flight",
"referenceId": 136,
"checkInAt": "2026-02-09T16:26:24.569Z",
"checkOutAt": "2026-02-09T16:26:24.569Z",
"status": "cancelled",
"totalAmount": 5707,
"currency": "AED",
"createdAt": "2025-11-29T16:26:24.569Z"
}