example-data.com

bookings / #144

May
20
Wed

flight booking #144

1:06 PM – 1:06 PM

From AED9533.81

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/bookings/144" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/bookings/144"
);
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/144"
);
const booking = (await res.json()) as Booking;
import requests

res = requests.get(
    "https://example-data.com/api/v1/bookings/144"
)
booking = res.json()
{
  "id": 144,
  "userId": 17,
  "kind": "flight",
  "referenceId": 311,
  "checkInAt": "2026-05-20T13:06:34.203Z",
  "checkOutAt": "2026-05-20T13:06:34.203Z",
  "status": "completed",
  "totalAmount": 9533.81,
  "currency": "AED",
  "createdAt": "2026-05-04T13:06:34.203Z"
}
Draftbit