example-data.com
Menu
Browse docs and collections

Overview

hotels / #35

Insignificant Hotel East Jillian

hotel · East Jillian · $631.44+/night · ★ 3.3 (3882)

1921 Cronin Walk

beach-accesspet-friendlyrestaurantairport-shuttlelaundrycasinogym

Component variants

Related

Referenced by

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/hotels/35"
);
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/35"
);
const hotel = (await res.json()) as Hotel;

Python example

import requests

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

Response

{
  "id": 35,
  "name": "Insignificant Hotel East Jillian",
  "slug": "insignificant-hotel-east-jillian-35",
  "brand": "IHG",
  "countryAlpha2": "PE",
  "city": "East Jillian",
  "address": "1921 Cronin Walk",
  "latitude": 41.790556,
  "longitude": 33.79625,
  "starRating": 4,
  "rating": 3.3,
  "ratingCount": 3882,
  "priceFromPerNight": 631.44,
  "currency": "AUD",
  "amenities": [
    "beach-access",
    "pet-friendly",
    "restaurant",
    "airport-shuttle",
    "laundry",
    "casino",
    "gym"
  ],
  "createdAt": "2025-07-08T15:53:42.552Z"
}