Authentic Suites Nadertown
hotel · Nadertown · $1285.1+/night · ★ 4.1 (4555)
15940 Center Road
poolwifibusiness-centerspabeach-accessconcierge
Overview
hotels / #37
hotel · Nadertown · $1285.1+/night · ★ 4.1 (4555)
15940 Center Road
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/37" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/37" ); 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/37"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/37"
)
hotel = res.json() Response
{
"id": 37,
"name": "Authentic Suites Nadertown",
"slug": "authentic-suites-nadertown-37",
"brand": "Four Seasons",
"countryAlpha2": "GB",
"city": "Nadertown",
"address": "15940 Center Road",
"latitude": 4.389921,
"longitude": -173.743986,
"starRating": 5,
"rating": 4.1,
"ratingCount": 4555,
"priceFromPerNight": 1285.1,
"currency": "TRY",
"amenities": [
"pool",
"wifi",
"business-center",
"spa",
"beach-access",
"concierge"
],
"createdAt": "2024-12-07T14:23:05.174Z"
}