Tall Suites Charlottestad
hotel · Charlottestad · $247.97+/night · ★ 3.4 (4412)
2980 N 2nd Street
laundrycasino
Overview
hotels / #106
hotel · Charlottestad · $247.97+/night · ★ 3.4 (4412)
2980 N 2nd Street
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/106" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/106" ); 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/106"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/106"
)
hotel = res.json() Response
{
"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"
}