example-data.com

hotels / #48

Clear Resort West Cecelia

hotel · West Cecelia · $1768.69+/night · ★ 2.9 (2934)

4783 S Walnut Street

parkingbeach-accesswifipoolconciergebarrestaurantbusiness-center

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/48"
)
hotel = res.json()
{
  "id": 48,
  "name": "Clear Resort West Cecelia",
  "slug": "clear-resort-west-cecelia-48",
  "brand": "Four Seasons",
  "countryAlpha2": "PK",
  "city": "West Cecelia",
  "address": "4783 S Walnut Street",
  "latitude": -11.109107,
  "longitude": 91.310968,
  "starRating": 2,
  "rating": 2.9,
  "ratingCount": 2934,
  "priceFromPerNight": 1768.69,
  "currency": "GBP",
  "amenities": [
    "parking",
    "beach-access",
    "wifi",
    "pool",
    "concierge",
    "bar",
    "restaurant",
    "business-center"
  ],
  "createdAt": "2025-02-24T14:11:29.594Z"
}
Draftbit