Jul
8
Tue
hotel booking #377
6:10 PM – 6:10 PM
From AED 5672.07
Overview
bookings / #377
6:10 PM – 6:10 PM
From AED 5672.07
Request
curl example
curl -sS \ "https://example-data.com/api/v1/bookings/377" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/bookings/377" ); const booking = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/bookings.d.ts https://example-data.com/types/bookings.d.ts
import type { Booking } from "./types/bookings";
const res = await fetch(
"https://example-data.com/api/v1/bookings/377"
);
const booking = (await res.json()) as Booking; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/bookings/377"
)
booking = res.json() Response
{
"id": 377,
"userId": 206,
"kind": "hotel",
"referenceId": 93,
"checkInAt": "2025-07-08T18:10:32.010Z",
"checkOutAt": "2025-07-20T18:10:32.010Z",
"status": "cancelled",
"totalAmount": 5672.07,
"currency": "AED",
"createdAt": "2025-05-01T18:10:32.010Z"
}