Williamsonchester Loft
loft · Williamsonchester · $1390.51/night · ★ 4.4 (33)
3140 Shields Forest
Overview
properties / #131
loft · Williamsonchester · $1390.51/night · ★ 4.4 (33)
3140 Shields Forest
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/131" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/131" ); 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/131"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/131"
)
propertie = res.json() Response
{
"id": 131,
"name": "Williamsonchester Loft",
"slug": "williamsonchester-loft-131",
"type": "loft",
"countryAlpha2": "VN",
"city": "Williamsonchester",
"address": "3140 Shields Forest",
"latitude": -8.194865,
"longitude": -109.688759,
"bedrooms": 2,
"bathrooms": 2.5,
"maxGuests": 2,
"pricePerNight": 1390.51,
"currency": "MXN",
"rating": 4.4,
"ratingCount": 33,
"hostUserId": 109,
"createdAt": "2025-10-08T13:50:40.376Z",
"updatedAt": "2026-03-01T12:10:20.145Z"
}