example-data.com

hotels / #141

Calculating Palace Port Charlotte

hotel · Port Charlotte · $1637.75+/night · ★ 4.8 (1851)

68974 Marty Lodge

wifispabarconciergerestaurant

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/141"
)
hotel = res.json()
{
  "id": 141,
  "name": "Calculating Palace Port Charlotte",
  "slug": "calculating-palace-port-charlotte-141",
  "brand": null,
  "countryAlpha2": "MA",
  "city": "Port Charlotte",
  "address": "68974 Marty Lodge",
  "latitude": 27.434501,
  "longitude": 72.767124,
  "starRating": 3,
  "rating": 4.8,
  "ratingCount": 1851,
  "priceFromPerNight": 1637.75,
  "currency": "TRY",
  "amenities": [
    "wifi",
    "spa",
    "bar",
    "concierge",
    "restaurant"
  ],
  "createdAt": "2024-10-26T09:35:29.364Z"
}
Draftbit