Strict Suites New Curtisfield
hotel · New Curtisfield · $830.25+/night · ★ 4.1 (3853)
8880 Adams Spring
wifipet-friendlyroom-servicerestaurant
hotels / #20
hotel · New Curtisfield · $830.25+/night · ★ 4.1 (3853)
8880 Adams Spring
curl -sS \
"https://example-data.com/api/v1/hotels/20" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/20"
);
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/20"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/20"
)
hotel = res.json() {
"id": 20,
"name": "Strict Suites New Curtisfield",
"slug": "strict-suites-new-curtisfield-20",
"brand": null,
"countryAlpha2": "FI",
"city": "New Curtisfield",
"address": "8880 Adams Spring",
"latitude": -5.391442,
"longitude": -178.224663,
"starRating": 4,
"rating": 4.1,
"ratingCount": 3853,
"priceFromPerNight": 830.25,
"currency": "THB",
"amenities": [
"wifi",
"pet-friendly",
"room-service",
"restaurant"
],
"createdAt": "2026-03-14T12:47:49.819Z"
}