example-data.com

hotels / #131

Busy Suites Fall River

hotel · Fall River · $331.47+/night · ★ 4.7 (4499)

3041 W 3rd Street

business-centercasinoroom-servicespaparkingpet-friendly

Component variants

curl -sS \
  "https://example-data.com/api/v1/hotels/131" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/hotels/131"
);
const hotel = await res.json();
import type { Hotel } from "https://example-data.com/types/hotels.d.ts";

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/131"
)
hotel = res.json()
{
  "id": 131,
  "name": "Busy Suites Fall River",
  "slug": "busy-suites-fall-river-131",
  "brand": "IHG",
  "countryAlpha2": "CA",
  "city": "Fall River",
  "address": "3041 W 3rd Street",
  "latitude": 25.586325,
  "longitude": -60.951828,
  "starRating": 4,
  "rating": 4.7,
  "ratingCount": 4499,
  "priceFromPerNight": 331.47,
  "currency": "USD",
  "amenities": [
    "business-center",
    "casino",
    "room-service",
    "spa",
    "parking",
    "pet-friendly"
  ],
  "createdAt": "2025-09-25T16:06:46.068Z"
}
Draftbit