example-data.com

hotels / #73

Subtle Inn East Antonette

hotel · East Antonette · $1836.77+/night · ★ 4.7 (875)

2087 Eugenia Shore

laundryconciergewifiroom-serviceparking

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/73"
)
hotel = res.json()
{
  "id": 73,
  "name": "Subtle Inn East Antonette",
  "slug": "subtle-inn-east-antonette-73",
  "brand": null,
  "countryAlpha2": "DE",
  "city": "East Antonette",
  "address": "2087 Eugenia Shore",
  "latitude": 40.698981,
  "longitude": 38.80245,
  "starRating": 4,
  "rating": 4.7,
  "ratingCount": 875,
  "priceFromPerNight": 1836.77,
  "currency": "TRY",
  "amenities": [
    "laundry",
    "concierge",
    "wifi",
    "room-service",
    "parking"
  ],
  "createdAt": "2024-05-28T09:28:53.243Z"
}
Draftbit