Cameronworth Cabin
cabin · Cameronworth · $1381.15/night · ★ 4.2 (193)
3209 Cristal View
Overview
properties / #63
cabin · Cameronworth · $1381.15/night · ★ 4.2 (193)
3209 Cristal View
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/63" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/63" ); 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/63"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/63"
)
propertie = res.json() Response
{
"id": 63,
"name": "Cameronworth Cabin",
"slug": "cameronworth-cabin-63",
"type": "cabin",
"countryAlpha2": "DE",
"city": "Cameronworth",
"address": "3209 Cristal View",
"latitude": 33.830078,
"longitude": -89.451017,
"bedrooms": 4,
"bathrooms": 2,
"maxGuests": 7,
"pricePerNight": 1381.15,
"currency": "USD",
"rating": 4.2,
"ratingCount": 193,
"hostUserId": 215,
"createdAt": "2024-12-14T15:11:49.339Z",
"updatedAt": "2025-05-10T01:47:26.870Z"
}