North Mertie House
house · North Mertie · $183.44/night · ★ 4.0 (1713)
91533 Claremont Road
Overview
properties / #182
house · North Mertie · $183.44/night · ★ 4.0 (1713)
91533 Claremont Road
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/182" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/182" ); 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/182"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/182"
)
propertie = res.json() Response
{
"id": 182,
"name": "North Mertie House",
"slug": "north-mertie-house-182",
"type": "house",
"countryAlpha2": "CN",
"city": "North Mertie",
"address": "91533 Claremont Road",
"latitude": 37.728506,
"longitude": -67.722327,
"bedrooms": 4,
"bathrooms": 3.5,
"maxGuests": 6,
"pricePerNight": 183.44,
"currency": "MXN",
"rating": 4,
"ratingCount": 1713,
"hostUserId": 132,
"createdAt": "2025-03-06T03:44:12.627Z",
"updatedAt": "2025-10-01T00:37:52.499Z"
}