Davenport Cabin
cabin · Davenport · $881.34/night · ★ 4.2 (61)
97684 Marjolaine Walks
Overview
properties / #45
cabin · Davenport · $881.34/night · ★ 4.2 (61)
97684 Marjolaine Walks
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/45" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/45" ); 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/45"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/45"
)
propertie = res.json() Response
{
"id": 45,
"name": "Davenport Cabin",
"slug": "davenport-cabin-45",
"type": "cabin",
"countryAlpha2": "KR",
"city": "Davenport",
"address": "97684 Marjolaine Walks",
"latitude": -20.232876,
"longitude": -57.231662,
"bedrooms": 2,
"bathrooms": 2,
"maxGuests": 6,
"pricePerNight": 881.34,
"currency": "USD",
"rating": 4.2,
"ratingCount": 61,
"hostUserId": 186,
"createdAt": "2025-09-11T16:16:01.340Z",
"updatedAt": "2025-09-24T10:39:12.542Z"
}