Those Inn Winston-Salem
hotel · Winston-Salem · $423.3+/night · ★ 3.5 (4108)
97548 Roberta Knoll
pet-friendlyconciergebusiness-centerlaundrybarparkinggymcasino
hotels / #44
hotel · Winston-Salem · $423.3+/night · ★ 3.5 (4108)
97548 Roberta Knoll
curl -sS \
"https://example-data.com/api/v1/hotels/44" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/44"
);
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/44"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/44"
)
hotel = res.json() {
"id": 44,
"name": "Those Inn Winston-Salem",
"slug": "those-inn-winston-salem-44",
"brand": null,
"countryAlpha2": "US",
"city": "Winston-Salem",
"address": "97548 Roberta Knoll",
"latitude": -44.886084,
"longitude": 46.232442,
"starRating": 2,
"rating": 3.5,
"ratingCount": 4108,
"priceFromPerNight": 423.3,
"currency": "JPY",
"amenities": [
"pet-friendly",
"concierge",
"business-center",
"laundry",
"bar",
"parking",
"gym",
"casino"
],
"createdAt": "2025-03-14T10:41:26.908Z"
}