Oct
13
Tue
flight booking #226
1:14 AM – 1:14 AM
From JPY4741.28
bookings / #226
1:14 AM – 1:14 AM
From JPY4741.28
curl -sS \
"https://example-data.com/api/v1/bookings/226" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/bookings/226"
);
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/226"
);
const booking = (await res.json()) as Booking;import requests
res = requests.get(
"https://example-data.com/api/v1/bookings/226"
)
booking = res.json() {
"id": 226,
"userId": 97,
"kind": "flight",
"referenceId": 209,
"checkInAt": "2026-10-13T01:14:12.342Z",
"checkOutAt": "2026-10-13T01:14:12.342Z",
"status": "cancelled",
"totalAmount": 4741.28,
"currency": "JPY",
"createdAt": "2026-07-22T01:14:12.342Z"
}