Memorable Resort Lindworth
hotel · Lindworth · $1029.99+/night · ★ 3.1 (4547)
3364 Ziemann Mission
gymbusiness-centerwifiparkingrestaurantpet-friendlybar
Overview
hotels / #86
hotel · Lindworth · $1029.99+/night · ★ 3.1 (4547)
3364 Ziemann Mission
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/86" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/86" ); 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/86"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/86"
)
hotel = res.json() Response
{
"id": 86,
"name": "Memorable Resort Lindworth",
"slug": "memorable-resort-lindworth-86",
"brand": "Hyatt",
"countryAlpha2": "DE",
"city": "Lindworth",
"address": "3364 Ziemann Mission",
"latitude": 37.289737,
"longitude": 65.276797,
"starRating": 5,
"rating": 3.1,
"ratingCount": 4547,
"priceFromPerNight": 1029.99,
"currency": "AED",
"amenities": [
"gym",
"business-center",
"wifi",
"parking",
"restaurant",
"pet-friendly",
"bar"
],
"createdAt": "2025-08-10T16:21:59.232Z"
}