Jun
6
Fri
hotel booking #235
12:30 PM – 12:30 PM
From JPY2907.92
bookings / #235
12:30 PM – 12:30 PM
From JPY2907.92
curl -sS \
"https://example-data.com/api/v1/bookings/235" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/bookings/235"
);
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/235"
);
const booking = (await res.json()) as Booking;import requests
res = requests.get(
"https://example-data.com/api/v1/bookings/235"
)
booking = res.json() {
"id": 235,
"userId": 204,
"kind": "hotel",
"referenceId": 2,
"checkInAt": "2025-06-06T12:30:34.596Z",
"checkOutAt": "2025-06-13T12:30:34.596Z",
"status": "pending",
"totalAmount": 2907.92,
"currency": "JPY",
"createdAt": "2025-04-03T12:30:34.596Z"
}