example-data.com

bookings / #22

Apr
19
Sun

property booking #22

8:37 PM – 8:37 PM

From AED9744.76

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/bookings/22"
)
booking = res.json()
{
  "id": 22,
  "userId": 135,
  "kind": "property",
  "referenceId": 102,
  "checkInAt": "2026-04-19T20:37:27.972Z",
  "checkOutAt": "2026-04-30T20:37:27.972Z",
  "status": "pending",
  "totalAmount": 9744.76,
  "currency": "AED",
  "createdAt": "2026-02-05T20:37:27.972Z"
}
Draftbit