example-data.com
Menu
Browse docs and collections

Overview

hotels / #60

Wee Inn Valerieville

hotel · Valerieville · $1361.11+/night · ★ 2.3 (2409)

35643 Rohan River

casinobarwifirestaurantbeach-accessparkingpoolpet-friendly

Component variants

Related

Referenced by

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 60,
  "name": "Wee Inn Valerieville",
  "slug": "wee-inn-valerieville-60",
  "brand": null,
  "countryAlpha2": "BR",
  "city": "Valerieville",
  "address": "35643 Rohan River",
  "latitude": -22.423612,
  "longitude": 67.643992,
  "starRating": 3,
  "rating": 2.3,
  "ratingCount": 2409,
  "priceFromPerNight": 1361.11,
  "currency": "EUR",
  "amenities": [
    "casino",
    "bar",
    "wifi",
    "restaurant",
    "beach-access",
    "parking",
    "pool",
    "pet-friendly"
  ],
  "createdAt": "2024-11-22T13:34:39.946Z"
}