example-data.com
Menu
Browse docs and collections

Overview

hotels / #29

Overdue Resort West Kurt

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

86901 E Main Street

spalaundryconciergeroom-servicecasinopoolgymbusiness-center

Component variants

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/hotels/29" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/hotels/29"
);
const hotel = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/hotels.d.ts https://example-data.com/types/hotels.d.ts
import type { Hotel } from "./types/hotels";

const res = await fetch(
  "https://example-data.com/api/v1/hotels/29"
);
const hotel = (await res.json()) as Hotel;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/hotels/29"
)
hotel = res.json()

Response

{
  "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"
}