example-data.com
Menu
Browse docs and collections

Overview

hotels / #137

Complicated Hotel Susiechester

hotel · Susiechester · $1862.84+/night · ★ 4.7 (1514)

77130 Cruz Vista

beach-accesslaundrygym

Component variants

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/hotels/137"
);
const hotel = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/hotels.d.ts https://example-data.com/types/hotels.d.ts
import type { Hotel } from "./types/hotels";

const res = await fetch(
  "https://example-data.com/api/v1/hotels/137"
);
const hotel = (await res.json()) as Hotel;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/hotels/137"
)
hotel = res.json()

Response

{
  "id": 137,
  "name": "Complicated Hotel Susiechester",
  "slug": "complicated-hotel-susiechester-137",
  "brand": "Wyndham",
  "countryAlpha2": "KE",
  "city": "Susiechester",
  "address": "77130 Cruz Vista",
  "latitude": 14.737216,
  "longitude": -173.460907,
  "starRating": 2,
  "rating": 4.7,
  "ratingCount": 1514,
  "priceFromPerNight": 1862.84,
  "currency": "THB",
  "amenities": [
    "beach-access",
    "laundry",
    "gym"
  ],
  "createdAt": "2024-06-15T15:19:11.757Z"
}