Willyside Apartment
apartment · Willyside · $1240.3/night · ★ 4.5 (309)
6337 Lake Drive
Overview
properties / #164
apartment · Willyside · $1240.3/night · ★ 4.5 (309)
6337 Lake Drive
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/164" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/164" ); 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/164"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/164"
)
propertie = res.json() Response
{
"id": 164,
"name": "Willyside Apartment",
"slug": "willyside-apartment-164",
"type": "apartment",
"countryAlpha2": "ES",
"city": "Willyside",
"address": "6337 Lake Drive",
"latitude": 40.937709,
"longitude": -66.124891,
"bedrooms": 4,
"bathrooms": 4,
"maxGuests": 2,
"pricePerNight": 1240.3,
"currency": "GBP",
"rating": 4.5,
"ratingCount": 309,
"hostUserId": 148,
"createdAt": "2025-08-25T11:25:33.516Z",
"updatedAt": "2025-09-09T07:10:08.987Z"
}