Lake Sylvanport House
house · Lake Sylvanport · $489.87/night · ★ 2.6 (1072)
665 Green Close
Overview
properties / #16
house · Lake Sylvanport · $489.87/night · ★ 2.6 (1072)
665 Green Close
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/16" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/16" ); 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/16"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/16"
)
propertie = res.json() Response
{
"id": 16,
"name": "Lake Sylvanport House",
"slug": "lake-sylvanport-house-16",
"type": "house",
"countryAlpha2": "TR",
"city": "Lake Sylvanport",
"address": "665 Green Close",
"latitude": 6.36734,
"longitude": -85.339787,
"bedrooms": 6,
"bathrooms": 3.5,
"maxGuests": 4,
"pricePerNight": 489.87,
"currency": "MXN",
"rating": 2.6,
"ratingCount": 1072,
"hostUserId": 37,
"createdAt": "2026-01-10T17:35:46.023Z",
"updatedAt": "2026-04-06T20:13:25.481Z"
}