Deserted Resort Greensboro
hotel · Greensboro · $1150.15+/night · ★ 3.0 (645)
3522 Dee Forest
barlaundrycasino
Overview
hotels / #49
hotel · Greensboro · $1150.15+/night · ★ 3.0 (645)
3522 Dee Forest
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/49" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/49" ); 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/49"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/49"
)
hotel = res.json() Response
{
"id": 49,
"name": "Deserted Resort Greensboro",
"slug": "deserted-resort-greensboro-49",
"brand": "Four Seasons",
"countryAlpha2": "SA",
"city": "Greensboro",
"address": "3522 Dee Forest",
"latitude": -4.804296,
"longitude": 90.253156,
"starRating": 2,
"rating": 3,
"ratingCount": 645,
"priceFromPerNight": 1150.15,
"currency": "AUD",
"amenities": [
"bar",
"laundry",
"casino"
],
"createdAt": "2025-07-14T00:21:35.478Z"
}