example-data.com

hotels / #49

Deserted Resort Greensboro

hotel · Greensboro · $1150.15+/night · ★ 3.0 (645)

3522 Dee Forest

barlaundrycasino

Component variants

curl -sS \
  "https://example-data.com/api/v1/hotels/49" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/hotels/49"
);
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/49"
);
const hotel = (await res.json()) as Hotel;
import requests

res = requests.get(
    "https://example-data.com/api/v1/hotels/49"
)
hotel = res.json()
{
  "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"
}
Draftbit