Grouchy Lodge Laredo
hotel · Laredo · $1754.98+/night · ★ 4.2 (1617)
3914 Ocie Loop
casinoroom-servicebeach-accessairport-shuttlerestaurantgymparking
hotels / #99
hotel · Laredo · $1754.98+/night · ★ 4.2 (1617)
3914 Ocie Loop
curl -sS \
"https://example-data.com/api/v1/hotels/99" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/99"
);
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/99"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/99"
)
hotel = res.json() {
"id": 99,
"name": "Grouchy Lodge Laredo",
"slug": "grouchy-lodge-laredo-99",
"brand": null,
"countryAlpha2": "MY",
"city": "Laredo",
"address": "3914 Ocie Loop",
"latitude": 34.365313,
"longitude": 4.321702,
"starRating": 5,
"rating": 4.2,
"ratingCount": 1617,
"priceFromPerNight": 1754.98,
"currency": "SGD",
"amenities": [
"casino",
"room-service",
"beach-access",
"airport-shuttle",
"restaurant",
"gym",
"parking"
],
"createdAt": "2024-05-26T11:23:22.046Z"
}