East Sterlingborough Villa
villa · East Sterlingborough · $719.28/night · ★ 4.9 (1813)
56826 Ben Locks
Overview
properties / #154
villa · East Sterlingborough · $719.28/night · ★ 4.9 (1813)
56826 Ben Locks
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/154" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/154" ); 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/154"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/154"
)
propertie = res.json() Response
{
"id": 154,
"name": "East Sterlingborough Villa",
"slug": "east-sterlingborough-villa-154",
"type": "villa",
"countryAlpha2": "FJ",
"city": "East Sterlingborough",
"address": "56826 Ben Locks",
"latitude": 28.289244,
"longitude": 74.232795,
"bedrooms": 0,
"bathrooms": 2,
"maxGuests": 1,
"pricePerNight": 719.28,
"currency": "MXN",
"rating": 4.9,
"ratingCount": 1813,
"hostUserId": 81,
"createdAt": "2026-05-13T18:53:09.703Z",
"updatedAt": "2026-05-17T18:38:42.264Z"
}