Staid Suites Mannland
hotel · Mannland · $1620.94+/night · ★ 2.2 (2520)
25146 Mayer Roads
laundrybarpet-friendlybeach-accesspoolconciergewifiairport-shuttle
Overview
hotels / #136
hotel · Mannland · $1620.94+/night · ★ 2.2 (2520)
25146 Mayer Roads
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/136" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/136" ); 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/136"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/136"
)
hotel = res.json() Response
{
"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"
}