example-data.com

bookings / #142

Jun
26
Thu

hotel booking #142

2:10 AM – 2:10 AM

From SGD653.56

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/bookings/142"
)
booking = res.json()
{
  "id": 142,
  "userId": 88,
  "kind": "hotel",
  "referenceId": 45,
  "checkInAt": "2025-06-26T02:10:19.242Z",
  "checkOutAt": "2025-07-09T02:10:19.242Z",
  "status": "cancelled",
  "totalAmount": 653.56,
  "currency": "SGD",
  "createdAt": "2025-04-12T02:10:19.242Z"
}
Draftbit