example-data.com

bookings / #105

Dec
5
Sat

property booking #105

3:24 PM – 3:24 PM

From EUR2096.12

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/bookings/105"
)
booking = res.json()
{
  "id": 105,
  "userId": 244,
  "kind": "property",
  "referenceId": 74,
  "checkInAt": "2026-12-05T15:24:00.446Z",
  "checkOutAt": "2026-12-07T15:24:00.446Z",
  "status": "confirmed",
  "totalAmount": 2096.12,
  "currency": "EUR",
  "createdAt": "2026-09-21T15:24:00.446Z"
}
Draftbit