example-data.com

bookings / #66

Jun
1
Mon

property booking #66

6:45 AM – 6:45 AM

From SGD2908.50

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/bookings/66"
)
booking = res.json()
{
  "id": 66,
  "userId": 59,
  "kind": "property",
  "referenceId": 76,
  "checkInAt": "2026-06-01T06:45:29.889Z",
  "checkOutAt": "2026-06-11T06:45:29.889Z",
  "status": "completed",
  "totalAmount": 2908.5,
  "currency": "SGD",
  "createdAt": "2026-04-30T06:45:29.889Z"
}
Draftbit