example-data.com

bookings / #173

May
12
Tue

hotel booking #173

3:56 PM – 3:56 PM

From SGD8135.59

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/bookings/173"
)
booking = res.json()
{
  "id": 173,
  "userId": 99,
  "kind": "hotel",
  "referenceId": 70,
  "checkInAt": "2026-05-12T15:56:01.062Z",
  "checkOutAt": "2026-05-23T15:56:01.062Z",
  "status": "completed",
  "totalAmount": 8135.59,
  "currency": "SGD",
  "createdAt": "2026-05-07T15:56:01.062Z"
}
Draftbit