example-data.com

bookings / #184

Nov
6
Thu

property booking #184

8:50 AM – 8:50 AM

From USD1932.95

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/bookings/184"
)
booking = res.json()
{
  "id": 184,
  "userId": 29,
  "kind": "property",
  "referenceId": 69,
  "checkInAt": "2025-11-06T08:50:37.676Z",
  "checkOutAt": "2025-11-17T08:50:37.676Z",
  "status": "pending",
  "totalAmount": 1932.95,
  "currency": "USD",
  "createdAt": "2025-09-16T08:50:37.676Z"
}
Draftbit