Trustworthy Lodge North Duaneside
hotel · North Duaneside · $1316.85+/night · ★ 2.2 (3549)
3828 1st Avenue
parkingpet-friendlybar
hotels / #130
hotel · North Duaneside · $1316.85+/night · ★ 2.2 (3549)
3828 1st Avenue
curl -sS \
"https://example-data.com/api/v1/hotels/130" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/130"
);
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/130"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/130"
)
hotel = res.json() {
"id": 130,
"name": "Trustworthy Lodge North Duaneside",
"slug": "trustworthy-lodge-north-duaneside-130",
"brand": "Wyndham",
"countryAlpha2": "NZ",
"city": "North Duaneside",
"address": "3828 1st Avenue",
"latitude": -52.363851,
"longitude": -16.822405,
"starRating": 4,
"rating": 2.2,
"ratingCount": 3549,
"priceFromPerNight": 1316.85,
"currency": "AED",
"amenities": [
"parking",
"pet-friendly",
"bar"
],
"createdAt": "2025-02-06T21:47:11.509Z"
}