Jun
20
Fri
property booking #198
2:31 AM – 2:31 AM
From JPY7976.80
bookings / #198
2:31 AM – 2:31 AM
From JPY7976.80
curl -sS \
"https://example-data.com/api/v1/bookings/198" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/bookings/198"
);
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/198"
);
const booking = (await res.json()) as Booking;import requests
res = requests.get(
"https://example-data.com/api/v1/bookings/198"
)
booking = res.json() {
"id": 198,
"userId": 189,
"kind": "property",
"referenceId": 86,
"checkInAt": "2025-06-20T02:31:35.642Z",
"checkOutAt": "2025-07-02T02:31:35.642Z",
"status": "cancelled",
"totalAmount": 7976.8,
"currency": "JPY",
"createdAt": "2025-04-02T02:31:35.642Z"
}