East Hartford Cabin
cabin · East Hartford · $853.33/night · ★ 3.8 (113)
2221 Blind Lane
Overview
properties / #134
cabin · East Hartford · $853.33/night · ★ 3.8 (113)
2221 Blind Lane
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/134" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/134" ); 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/134"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/134"
)
propertie = res.json() Response
{
"id": 134,
"name": "East Hartford Cabin",
"slug": "east-hartford-cabin-134",
"type": "cabin",
"countryAlpha2": "IE",
"city": "East Hartford",
"address": "2221 Blind Lane",
"latitude": 6.834004,
"longitude": -24.92935,
"bedrooms": 4,
"bathrooms": 1.5,
"maxGuests": 5,
"pricePerNight": 853.33,
"currency": "EUR",
"rating": 3.8,
"ratingCount": 113,
"hostUserId": 79,
"createdAt": "2025-08-15T09:38:28.683Z",
"updatedAt": "2025-08-17T09:29:18.220Z"
}