example-data.com
Menu
Browse docs and collections

Overview

bookings / #82

Nov
17
Tue

hotel booking #82

10:59 AM – 10:59 AM

From CAD 2355.67

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/bookings/82" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/bookings/82"
);
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/82"
);
const booking = (await res.json()) as Booking;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/bookings/82"
)
booking = res.json()

Response

{
  "id": 82,
  "userId": 178,
  "kind": "hotel",
  "referenceId": 118,
  "checkInAt": "2026-11-17T10:59:56.507Z",
  "checkOutAt": "2026-11-22T10:59:56.507Z",
  "status": "completed",
  "totalAmount": 2355.67,
  "currency": "CAD",
  "createdAt": "2026-10-15T10:59:56.507Z"
}