example-data.com

hotels / #40

Golden Suites Marcialand

hotel · Marcialand · $591.25+/night · ★ 3.5 (3134)

55804 Karlie Trafficway

barrestaurant

Component variants

curl -sS \
  "https://example-data.com/api/v1/hotels/40" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/hotels/40"
);
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/40"
);
const hotel = (await res.json()) as Hotel;
import requests

res = requests.get(
    "https://example-data.com/api/v1/hotels/40"
)
hotel = res.json()
{
  "id": 40,
  "name": "Golden Suites Marcialand",
  "slug": "golden-suites-marcialand-40",
  "brand": "Hilton",
  "countryAlpha2": "AE",
  "city": "Marcialand",
  "address": "55804 Karlie Trafficway",
  "latitude": -23.140733,
  "longitude": 18.503871,
  "starRating": 5,
  "rating": 3.5,
  "ratingCount": 3134,
  "priceFromPerNight": 591.25,
  "currency": "JPY",
  "amenities": [
    "bar",
    "restaurant"
  ],
  "createdAt": "2024-12-15T02:47:18.951Z"
}
Draftbit