Petty Resort Coon Rapids
hotel · Coon Rapids · $1729.46+/night · ★ 2.7 (890)
3127 Brookside
conciergebeach-accessbusiness-centergymbarpet-friendly
hotels / #121
hotel · Coon Rapids · $1729.46+/night · ★ 2.7 (890)
3127 Brookside
curl -sS \
"https://example-data.com/api/v1/hotels/121" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/121"
);
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/121"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/121"
)
hotel = res.json() {
"id": 121,
"name": "Petty Resort Coon Rapids",
"slug": "petty-resort-coon-rapids-121",
"brand": null,
"countryAlpha2": "CA",
"city": "Coon Rapids",
"address": "3127 Brookside",
"latitude": -28.482851,
"longitude": -69.053214,
"starRating": 3,
"rating": 2.7,
"ratingCount": 890,
"priceFromPerNight": 1729.46,
"currency": "THB",
"amenities": [
"concierge",
"beach-access",
"business-center",
"gym",
"bar",
"pet-friendly"
],
"createdAt": "2025-05-13T08:44:04.596Z"
}