example-data.com

bookings / #177

Jul
5
Sat

hotel booking #177

11:03 PM – 11:03 PM

From SGD2613.83

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/bookings/177"
)
booking = res.json()
{
  "id": 177,
  "userId": 3,
  "kind": "hotel",
  "referenceId": 108,
  "checkInAt": "2025-07-05T23:03:18.468Z",
  "checkOutAt": "2025-07-09T23:03:18.468Z",
  "status": "confirmed",
  "totalAmount": 2613.83,
  "currency": "SGD",
  "createdAt": "2025-06-03T23:03:18.468Z"
}
Draftbit