Yearly Resort New Britain
hotel · New Britain · $847.33+/night · ★ 4.3 (364)
795 S Walnut Street
wifibeach-accesscasinopoolroom-servicelaundry
hotels / #142
hotel · New Britain · $847.33+/night · ★ 4.3 (364)
795 S Walnut Street
curl -sS \
"https://example-data.com/api/v1/hotels/142" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/142"
);
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/142"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/142"
)
hotel = res.json() {
"id": 142,
"name": "Yearly Resort New Britain",
"slug": "yearly-resort-new-britain-142",
"brand": "Ritz-Carlton",
"countryAlpha2": "EG",
"city": "New Britain",
"address": "795 S Walnut Street",
"latitude": 35.480905,
"longitude": 100.391876,
"starRating": 2,
"rating": 4.3,
"ratingCount": 364,
"priceFromPerNight": 847.33,
"currency": "AED",
"amenities": [
"wifi",
"beach-access",
"casino",
"pool",
"room-service",
"laundry"
],
"createdAt": "2024-11-09T16:31:41.034Z"
}