example-data.com

hotels / #136

Staid Suites Mannland

hotel · Mannland · $1620.94+/night · ★ 2.2 (2520)

25146 Mayer Roads

laundrybarpet-friendlybeach-accesspoolconciergewifiairport-shuttle

Component variants

curl -sS \
  "https://example-data.com/api/v1/hotels/136" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/hotels/136"
);
const hotel = await res.json();
import type { Hotel } from "https://example-data.com/types/hotels.d.ts";

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/136"
)
hotel = res.json()
{
  "id": 136,
  "name": "Staid Suites Mannland",
  "slug": "staid-suites-mannland-136",
  "brand": null,
  "countryAlpha2": "NG",
  "city": "Mannland",
  "address": "25146 Mayer Roads",
  "latitude": 30.827164,
  "longitude": 40.025734,
  "starRating": 3,
  "rating": 2.2,
  "ratingCount": 2520,
  "priceFromPerNight": 1620.94,
  "currency": "USD",
  "amenities": [
    "laundry",
    "bar",
    "pet-friendly",
    "beach-access",
    "pool",
    "concierge",
    "wifi",
    "airport-shuttle"
  ],
  "createdAt": "2025-01-12T22:54:48.901Z"
}
Draftbit