North Theronborough Condo
condo · North Theronborough · $607.52/night · ★ 4.5 (1042)
47632 Raoul Ridges
Overview
properties / #126
condo · North Theronborough · $607.52/night · ★ 4.5 (1042)
47632 Raoul Ridges
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/126" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/126" ); 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/126"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/126"
)
propertie = res.json() Response
{
"id": 126,
"name": "North Theronborough Condo",
"slug": "north-theronborough-condo-126",
"type": "condo",
"countryAlpha2": "GR",
"city": "North Theronborough",
"address": "47632 Raoul Ridges",
"latitude": -3.262111,
"longitude": -107.639244,
"bedrooms": 1,
"bathrooms": 1,
"maxGuests": 3,
"pricePerNight": 607.52,
"currency": "MXN",
"rating": 4.5,
"ratingCount": 1042,
"hostUserId": 26,
"createdAt": "2025-09-23T01:05:34.827Z",
"updatedAt": "2026-05-14T22:06:20.152Z"
}