example-data.com

hotels / #37

Authentic Suites Nadertown

hotel · Nadertown · $1285.1+/night · ★ 4.1 (4555)

15940 Center Road

poolwifibusiness-centerspabeach-accessconcierge

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/37"
)
hotel = res.json()
{
  "id": 37,
  "name": "Authentic Suites Nadertown",
  "slug": "authentic-suites-nadertown-37",
  "brand": "Four Seasons",
  "countryAlpha2": "GB",
  "city": "Nadertown",
  "address": "15940 Center Road",
  "latitude": 4.389921,
  "longitude": -173.743986,
  "starRating": 5,
  "rating": 4.1,
  "ratingCount": 4555,
  "priceFromPerNight": 1285.1,
  "currency": "TRY",
  "amenities": [
    "pool",
    "wifi",
    "business-center",
    "spa",
    "beach-access",
    "concierge"
  ],
  "createdAt": "2024-12-07T14:23:05.174Z"
}
Draftbit