Grumpy Resort Riverview
hotel · Riverview · $121.19+/night · ★ 4.3 (3681)
9772 Rosendo Canyon
beach-accessconciergerestaurant
Overview
hotels / #98
hotel · Riverview · $121.19+/night · ★ 4.3 (3681)
9772 Rosendo Canyon
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/98" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/98" ); 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/98"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/98"
)
hotel = res.json() Response
{
"id": 98,
"name": "Grumpy Resort Riverview",
"slug": "grumpy-resort-riverview-98",
"brand": "Best Western",
"countryAlpha2": "FR",
"city": "Riverview",
"address": "9772 Rosendo Canyon",
"latitude": -31.514637,
"longitude": -164.811126,
"starRating": 3,
"rating": 4.3,
"ratingCount": 3681,
"priceFromPerNight": 121.19,
"currency": "SGD",
"amenities": [
"beach-access",
"concierge",
"restaurant"
],
"createdAt": "2024-06-05T03:26:08.548Z"
}