Gripping Inn North Brook
hotel · North Brook · $1843.6+/night · ★ 4.6 (4079)
3899 S Jackson Street
beach-accessbusiness-centerspawifipoollaundryroom-service
Overview
hotels / #38
hotel · North Brook · $1843.6+/night · ★ 4.6 (4079)
3899 S Jackson Street
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/38" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/38" ); 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/38"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/38"
)
hotel = res.json() Response
{
"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"
}