Jul
23
Thu
flight booking #81
11:53 AM – 11:53 AM
From AED7620.52
bookings / #81
11:53 AM – 11:53 AM
From AED7620.52
curl -sS \
"https://example-data.com/api/v1/bookings/81" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/bookings/81"
);
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/81"
);
const booking = (await res.json()) as Booking;import requests
res = requests.get(
"https://example-data.com/api/v1/bookings/81"
)
booking = res.json() {
"id": 81,
"userId": 43,
"kind": "flight",
"referenceId": 29,
"checkInAt": "2026-07-23T11:53:22.738Z",
"checkOutAt": "2026-07-23T11:53:22.738Z",
"status": "completed",
"totalAmount": 7620.52,
"currency": "AED",
"createdAt": "2026-04-24T11:53:22.738Z"
}