East Jakecester Cabin
cabin · East Jakecester · $915.67/night · ★ 3.7 (587)
3573 Berge Mountain
Overview
properties / #187
cabin · East Jakecester · $915.67/night · ★ 3.7 (587)
3573 Berge Mountain
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/187" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/187" ); 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/187"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/187"
)
propertie = res.json() Response
{
"id": 187,
"name": "East Jakecester Cabin",
"slug": "east-jakecester-cabin-187",
"type": "cabin",
"countryAlpha2": "PT",
"city": "East Jakecester",
"address": "3573 Berge Mountain",
"latitude": 4.003125,
"longitude": 40.319693,
"bedrooms": 0,
"bathrooms": 3,
"maxGuests": 1,
"pricePerNight": 915.67,
"currency": "USD",
"rating": 3.7,
"ratingCount": 587,
"hostUserId": 25,
"createdAt": "2026-02-10T19:32:14.329Z",
"updatedAt": "2026-02-14T11:29:37.276Z"
}