example-data.com

bookings / #88

Aug
3
Sun

flight booking #88

10:25 AM – 10:25 AM

From AUD2720.29

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/bookings/88"
)
booking = res.json()
{
  "id": 88,
  "userId": 201,
  "kind": "flight",
  "referenceId": 207,
  "checkInAt": "2025-08-03T10:25:05.184Z",
  "checkOutAt": "2025-08-03T10:25:05.184Z",
  "status": "confirmed",
  "totalAmount": 2720.29,
  "currency": "AUD",
  "createdAt": "2025-07-23T10:25:05.184Z"
}
Draftbit