example-data.com

hotels / #29

Overdue Resort West Kurt

hotel · West Kurt · $1612.58+/night · ★ 4.0 (3850)

86901 E Main Street

spalaundryconciergeroom-servicecasinopoolgymbusiness-center

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/29"
)
hotel = res.json()
{
  "id": 29,
  "name": "Overdue Resort West Kurt",
  "slug": "overdue-resort-west-kurt-29",
  "brand": "Best Western",
  "countryAlpha2": "GR",
  "city": "West Kurt",
  "address": "86901 E Main Street",
  "latitude": -12.540872,
  "longitude": 31.873943,
  "starRating": 2,
  "rating": 4,
  "ratingCount": 3850,
  "priceFromPerNight": 1612.58,
  "currency": "AED",
  "amenities": [
    "spa",
    "laundry",
    "concierge",
    "room-service",
    "casino",
    "pool",
    "gym",
    "business-center"
  ],
  "createdAt": "2026-02-04T06:56:32.033Z"
}
Draftbit