example-data.com

bookings / #194

May
22
Fri

hotel booking #194

5:43 AM – 5:43 AM

From JPY6482.60

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/bookings/194"
)
booking = res.json()
{
  "id": 194,
  "userId": 116,
  "kind": "hotel",
  "referenceId": 130,
  "checkInAt": "2026-05-22T05:43:44.431Z",
  "checkOutAt": "2026-06-01T05:43:44.431Z",
  "status": "pending",
  "totalAmount": 6482.6,
  "currency": "JPY",
  "createdAt": "2026-03-15T05:43:44.431Z"
}
Draftbit