Jul
24
Thu
flight booking #117
7:37 PM – 7:37 PM
From JPY7066.78
bookings / #117
7:37 PM – 7:37 PM
From JPY7066.78
curl -sS \
"https://example-data.com/api/v1/bookings/117" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/bookings/117"
);
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/117"
);
const booking = (await res.json()) as Booking;import requests
res = requests.get(
"https://example-data.com/api/v1/bookings/117"
)
booking = res.json() {
"id": 117,
"userId": 230,
"kind": "flight",
"referenceId": 210,
"checkInAt": "2025-07-24T19:37:03.437Z",
"checkOutAt": "2025-07-24T19:37:03.437Z",
"status": "confirmed",
"totalAmount": 7066.78,
"currency": "JPY",
"createdAt": "2025-05-09T19:37:03.437Z"
}