example-data.com
Menu
Browse docs and collections

Overview

hotels / #96

Soft Hotel Gerlachmouth

hotel · Gerlachmouth · $1861.47+/night · ★ 3.8 (557)

3194 River Road

conciergewifibarlaundry

Component variants

Related

Referenced by

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 96,
  "name": "Soft Hotel Gerlachmouth",
  "slug": "soft-hotel-gerlachmouth-96",
  "brand": "Hilton",
  "countryAlpha2": "MA",
  "city": "Gerlachmouth",
  "address": "3194 River Road",
  "latitude": -0.09792,
  "longitude": 33.114209,
  "starRating": 3,
  "rating": 3.8,
  "ratingCount": 557,
  "priceFromPerNight": 1861.47,
  "currency": "JPY",
  "amenities": [
    "concierge",
    "wifi",
    "bar",
    "laundry"
  ],
  "createdAt": "2026-03-10T20:43:14.320Z"
}