Memorable Resort Lindworth
hotel · Lindworth · $1029.99+/night · ★ 3.1 (4547)
3364 Ziemann Mission
gymbusiness-centerwifiparkingrestaurantpet-friendlybar
hotels / #86
hotel · Lindworth · $1029.99+/night · ★ 3.1 (4547)
3364 Ziemann Mission
curl -sS \
"https://example-data.com/api/v1/hotels/86" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/86"
);
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/86"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/86"
)
hotel = res.json() {
"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"
}