Posh Hotel East Berniece
hotel · East Berniece · $1371.05+/night · ★ 3.5 (4223)
36905 The Mews
conciergewifisparestaurantbusiness-centerairport-shuttlebeach-access
hotels / #111
hotel · East Berniece · $1371.05+/night · ★ 3.5 (4223)
36905 The Mews
curl -sS \
"https://example-data.com/api/v1/hotels/111" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/111"
);
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/111"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/111"
)
hotel = res.json() {
"id": 111,
"name": "Posh Hotel East Berniece",
"slug": "posh-hotel-east-berniece-111",
"brand": null,
"countryAlpha2": "KR",
"city": "East Berniece",
"address": "36905 The Mews",
"latitude": -12.973263,
"longitude": 21.021512,
"starRating": 2,
"rating": 3.5,
"ratingCount": 4223,
"priceFromPerNight": 1371.05,
"currency": "TRY",
"amenities": [
"concierge",
"wifi",
"spa",
"restaurant",
"business-center",
"airport-shuttle",
"beach-access"
],
"createdAt": "2025-02-18T21:47:22.190Z"
}