example-data.com
Menu
Browse docs and collections

Overview

hotels / #40

Golden Suites Marcialand

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

55804 Karlie Trafficway

barrestaurant

Component variants

Related

Referenced by

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/hotels/40" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/hotels/40"
);
const hotel = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/hotels.d.ts https://example-data.com/types/hotels.d.ts
import type { Hotel } from "./types/hotels";

const res = await fetch(
  "https://example-data.com/api/v1/hotels/40"
);
const hotel = (await res.json()) as Hotel;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/hotels/40"
)
hotel = res.json()

Response

{
  "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"
}