example-data.com
Menu
Browse docs and collections

Overview

hotels / #62

Slimy Resort East Helmer

hotel · East Helmer · $1472.67+/night · ★ 2.4 (4187)

98962 Arthur Corners

casinobarlaundrywifiairport-shuttleparking

Component variants

Related

Referenced by

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 62,
  "name": "Slimy Resort East Helmer",
  "slug": "slimy-resort-east-helmer-62",
  "brand": "Hilton",
  "countryAlpha2": "CA",
  "city": "East Helmer",
  "address": "98962 Arthur Corners",
  "latitude": -26.218169,
  "longitude": -163.134893,
  "starRating": 2,
  "rating": 2.4,
  "ratingCount": 4187,
  "priceFromPerNight": 1472.67,
  "currency": "THB",
  "amenities": [
    "casino",
    "bar",
    "laundry",
    "wifi",
    "airport-shuttle",
    "parking"
  ],
  "createdAt": "2025-05-17T14:44:08.531Z"
}