example-data.com

bookings / #69

Apr
26
Sun

property booking #69

9:06 AM – 9:06 AM

From USD836.03

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/bookings/69"
)
booking = res.json()
{
  "id": 69,
  "userId": 108,
  "kind": "property",
  "referenceId": 13,
  "checkInAt": "2026-04-26T09:06:51.957Z",
  "checkOutAt": "2026-04-27T09:06:51.957Z",
  "status": "cancelled",
  "totalAmount": 836.03,
  "currency": "USD",
  "createdAt": "2026-01-31T09:06:51.957Z"
}
Draftbit