example-data.com

hotels / #84

Petty Hotel Hansenfort

hotel · Hansenfort · $1487.43+/night · ★ 4.0 (3326)

56927 Noel Road

laundrycasino

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/84"
)
hotel = res.json()
{
  "id": 84,
  "name": "Petty Hotel Hansenfort",
  "slug": "petty-hotel-hansenfort-84",
  "brand": "Accor",
  "countryAlpha2": "PK",
  "city": "Hansenfort",
  "address": "56927 Noel Road",
  "latitude": 27.268764,
  "longitude": -70.342492,
  "starRating": 4,
  "rating": 4,
  "ratingCount": 3326,
  "priceFromPerNight": 1487.43,
  "currency": "GBP",
  "amenities": [
    "laundry",
    "casino"
  ],
  "createdAt": "2024-12-14T12:05:53.116Z"
}
Draftbit