Tall Suites Charlottestad
hotel · Charlottestad · $247.97+/night · ★ 3.4 (4412)
2980 N 2nd Street
laundrycasino
hotels / #106
hotel · Charlottestad · $247.97+/night · ★ 3.4 (4412)
2980 N 2nd Street
curl -sS \
"https://example-data.com/api/v1/hotels/106" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/106"
);
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/106"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/106"
)
hotel = res.json() {
"id": 106,
"name": "Tall Suites Charlottestad",
"slug": "tall-suites-charlottestad-106",
"brand": "Hilton",
"countryAlpha2": "IE",
"city": "Charlottestad",
"address": "2980 N 2nd Street",
"latitude": 17.447352,
"longitude": 130.03179,
"starRating": 2,
"rating": 3.4,
"ratingCount": 4412,
"priceFromPerNight": 247.97,
"currency": "SGD",
"amenities": [
"laundry",
"casino"
],
"createdAt": "2026-05-13T12:50:10.918Z"
}