example-data.com

hotels / #38

Gripping Inn North Brook

hotel · North Brook · $1843.6+/night · ★ 4.6 (4079)

3899 S Jackson Street

beach-accessbusiness-centerspawifipoollaundryroom-service

Component variants

curl -sS \
  "https://example-data.com/api/v1/hotels/38" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/hotels/38"
);
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/38"
);
const hotel = (await res.json()) as Hotel;
import requests

res = requests.get(
    "https://example-data.com/api/v1/hotels/38"
)
hotel = res.json()
{
  "id": 38,
  "name": "Gripping Inn North Brook",
  "slug": "gripping-inn-north-brook-38",
  "brand": "Marriott",
  "countryAlpha2": "IT",
  "city": "North Brook",
  "address": "3899 S Jackson Street",
  "latitude": -45.569455,
  "longitude": -84.880431,
  "starRating": 5,
  "rating": 4.6,
  "ratingCount": 4079,
  "priceFromPerNight": 1843.6,
  "currency": "CAD",
  "amenities": [
    "beach-access",
    "business-center",
    "spa",
    "wifi",
    "pool",
    "laundry",
    "room-service"
  ],
  "createdAt": "2026-01-16T14:36:39.039Z"
}
Draftbit