North Ludie House
house · North Ludie · $172.4/night · ★ 4.6 (1304)
376 Forest Road
Overview
properties / #52
house · North Ludie · $172.4/night · ★ 4.6 (1304)
376 Forest Road
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/52" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/52" ); 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/52"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/52"
)
propertie = res.json() Response
{
"id": 52,
"name": "North Ludie House",
"slug": "north-ludie-house-52",
"type": "house",
"countryAlpha2": "CH",
"city": "North Ludie",
"address": "376 Forest Road",
"latitude": 7.833592,
"longitude": 18.462373,
"bedrooms": 2,
"bathrooms": 2.5,
"maxGuests": 5,
"pricePerNight": 172.4,
"currency": "MXN",
"rating": 4.6,
"ratingCount": 1304,
"hostUserId": 200,
"createdAt": "2025-12-18T22:26:38.934Z",
"updatedAt": "2026-03-24T08:52:05.768Z"
}