example-data.com

hotels / #149

Knowledgeable Hotel West Gerard

hotel · West Gerard · $1120.77+/night · ★ 3.5 (1297)

99585 Durgan Knolls

room-serviceparking

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/149"
)
hotel = res.json()
{
  "id": 149,
  "name": "Knowledgeable Hotel West Gerard",
  "slug": "knowledgeable-hotel-west-gerard-149",
  "brand": null,
  "countryAlpha2": "NG",
  "city": "West Gerard",
  "address": "99585 Durgan Knolls",
  "latitude": -17.481186,
  "longitude": 100.22275,
  "starRating": 3,
  "rating": 3.5,
  "ratingCount": 1297,
  "priceFromPerNight": 1120.77,
  "currency": "AUD",
  "amenities": [
    "room-service",
    "parking"
  ],
  "createdAt": "2024-12-11T16:49:36.967Z"
}
Draftbit