Beerside Cabin
cabin · Beerside · $481.29/night · ★ 3.3 (226)
1104 Rempel Rest
Overview
properties / #65
cabin · Beerside · $481.29/night · ★ 3.3 (226)
1104 Rempel Rest
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/65" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/65" ); const property = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/properties.d.ts https://example-data.com/types/properties.d.ts
import type { Property } from "./types/properties";
const res = await fetch(
"https://example-data.com/api/v1/properties/65"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/65"
)
propertie = res.json() Response
{
"id": 65,
"name": "Beerside Cabin",
"slug": "beerside-cabin-65",
"type": "cabin",
"countryAlpha2": "SE",
"city": "Beerside",
"address": "1104 Rempel Rest",
"latitude": 21.111013,
"longitude": -45.63385,
"bedrooms": 0,
"bathrooms": 2.5,
"maxGuests": 2,
"pricePerNight": 481.29,
"currency": "MXN",
"rating": 3.3,
"ratingCount": 226,
"hostUserId": 221,
"createdAt": "2026-01-17T19:44:11.810Z",
"updatedAt": "2026-05-02T11:29:29.380Z"
}