Twilaworth Cabin
cabin · Twilaworth · $108.96/night · ★ 2.6 (817)
947 Jubilee Close
Overview
properties / #167
cabin · Twilaworth · $108.96/night · ★ 2.6 (817)
947 Jubilee Close
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/167" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/167" ); 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/167"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/167"
)
propertie = res.json() Response
{
"id": 167,
"name": "Twilaworth Cabin",
"slug": "twilaworth-cabin-167",
"type": "cabin",
"countryAlpha2": "CH",
"city": "Twilaworth",
"address": "947 Jubilee Close",
"latitude": -47.881434,
"longitude": 106.416905,
"bedrooms": 6,
"bathrooms": 2.5,
"maxGuests": 10,
"pricePerNight": 108.96,
"currency": "AED",
"rating": 2.6,
"ratingCount": 817,
"hostUserId": 218,
"createdAt": "2026-04-24T13:04:14.496Z",
"updatedAt": "2026-04-26T13:33:57.859Z"
}