example-data.com
Menu
Browse docs and collections

Overview

hotels / #139

Pricey Inn Stammtown

hotel · Stammtown · $1643.79+/night · ★ 3.1 (4649)

81824 Dicki Cove

conciergecasinospabar

Component variants

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/hotels/139"
);
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/139"
);
const hotel = (await res.json()) as Hotel;

Python example

import requests

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

Response

{
  "id": 139,
  "name": "Pricey Inn Stammtown",
  "slug": "pricey-inn-stammtown-139",
  "brand": "Wyndham",
  "countryAlpha2": "US",
  "city": "Stammtown",
  "address": "81824 Dicki Cove",
  "latitude": 34.033587,
  "longitude": -147.748902,
  "starRating": 5,
  "rating": 3.1,
  "ratingCount": 4649,
  "priceFromPerNight": 1643.79,
  "currency": "AUD",
  "amenities": [
    "concierge",
    "casino",
    "spa",
    "bar"
  ],
  "createdAt": "2026-01-15T16:28:44.897Z"
}