Bend Cabin
cabin · Bend · $495.56/night · ★ 4.7 (578)
52234 Gordon Road
Overview
properties / #192
cabin · Bend · $495.56/night · ★ 4.7 (578)
52234 Gordon Road
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/192" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/192" ); 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/192"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/192"
)
propertie = res.json() Response
{
"id": 192,
"name": "Bend Cabin",
"slug": "bend-cabin-192",
"type": "cabin",
"countryAlpha2": "AT",
"city": "Bend",
"address": "52234 Gordon Road",
"latitude": 10.677081,
"longitude": 62.571619,
"bedrooms": 3,
"bathrooms": 1,
"maxGuests": 8,
"pricePerNight": 495.56,
"currency": "BRL",
"rating": 4.7,
"ratingCount": 578,
"hostUserId": 160,
"createdAt": "2025-09-11T13:37:27.120Z",
"updatedAt": "2025-10-15T00:11:40.256Z"
}