Untimely Hotel New Bernhardville
hotel · New Bernhardville · $1319.91+/night · ★ 2.5 (571)
51445 4th Street
barlaundrybusiness-centerbeach-accesspoolairport-shuttlespawifi
hotels / #4
hotel · New Bernhardville · $1319.91+/night · ★ 2.5 (571)
51445 4th Street
curl -sS \
"https://example-data.com/api/v1/hotels/4" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/4"
);
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/4"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/4"
)
hotel = res.json() {
"id": 4,
"name": "Untimely Hotel New Bernhardville",
"slug": "untimely-hotel-new-bernhardville-4",
"brand": "Marriott",
"countryAlpha2": "GR",
"city": "New Bernhardville",
"address": "51445 4th Street",
"latitude": -50.448482,
"longitude": -69.614079,
"starRating": 4,
"rating": 2.5,
"ratingCount": 571,
"priceFromPerNight": 1319.91,
"currency": "AUD",
"amenities": [
"bar",
"laundry",
"business-center",
"beach-access",
"pool",
"airport-shuttle",
"spa",
"wifi"
],
"createdAt": "2025-07-09T17:02:00.399Z"
}