example-data.com
Menu
Browse docs and collections

Overview

hotels / #53

Shameful Resort North Otho

hotel · North Otho · $266.46+/night · ★ 4.3 (4974)

1900 Bailey Cliffs

restaurantspagymcasinoairport-shuttlebar

Component variants

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 53,
  "name": "Shameful Resort North Otho",
  "slug": "shameful-resort-north-otho-53",
  "brand": null,
  "countryAlpha2": "EG",
  "city": "North Otho",
  "address": "1900 Bailey Cliffs",
  "latitude": 59.702389,
  "longitude": -179.154696,
  "starRating": 5,
  "rating": 4.3,
  "ratingCount": 4974,
  "priceFromPerNight": 266.46,
  "currency": "CAD",
  "amenities": [
    "restaurant",
    "spa",
    "gym",
    "casino",
    "airport-shuttle",
    "bar"
  ],
  "createdAt": "2025-03-31T22:41:23.184Z"
}