example-data.com

hotels / #77

Warlike Suites Fort Mable

hotel · Fort Mable · $512+/night · ★ 3.9 (4030)

82564 The Poplars

room-servicelaundrybarbusiness-centerairport-shuttle

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/77"
)
hotel = res.json()
{
  "id": 77,
  "name": "Warlike Suites Fort Mable",
  "slug": "warlike-suites-fort-mable-77",
  "brand": null,
  "countryAlpha2": "SE",
  "city": "Fort Mable",
  "address": "82564 The Poplars",
  "latitude": -11.994249,
  "longitude": 9.179262,
  "starRating": 2,
  "rating": 3.9,
  "ratingCount": 4030,
  "priceFromPerNight": 512,
  "currency": "TRY",
  "amenities": [
    "room-service",
    "laundry",
    "bar",
    "business-center",
    "airport-shuttle"
  ],
  "createdAt": "2024-08-31T17:32:24.490Z"
}
Draftbit