Made-up Resort Abbiefield
hotel · Abbiefield · $1356.68+/night · ★ 4.2 (2038)
1205 Bessie Forks
wifibarpet-friendlygymbusiness-centerparkingspaairport-shuttle
hotels / #58
hotel · Abbiefield · $1356.68+/night · ★ 4.2 (2038)
1205 Bessie Forks
curl -sS \
"https://example-data.com/api/v1/hotels/58" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/58"
);
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/58"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/58"
)
hotel = res.json() {
"id": 58,
"name": "Made-up Resort Abbiefield",
"slug": "made-up-resort-abbiefield-58",
"brand": "Hilton",
"countryAlpha2": "NG",
"city": "Abbiefield",
"address": "1205 Bessie Forks",
"latitude": 52.229662,
"longitude": 172.096519,
"starRating": 5,
"rating": 4.2,
"ratingCount": 2038,
"priceFromPerNight": 1356.68,
"currency": "JPY",
"amenities": [
"wifi",
"bar",
"pet-friendly",
"gym",
"business-center",
"parking",
"spa",
"airport-shuttle"
],
"createdAt": "2024-11-03T08:10:03.835Z"
}