Willyside Apartment
apartment · Willyside · $1240.3/night · ★ 4.5 (309)
6337 Lake Drive
properties / #164
apartment · Willyside · $1240.3/night · ★ 4.5 (309)
6337 Lake Drive
curl -sS \
"https://example-data.com/api/v1/properties/164" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/properties/164"
);
const propertie = await res.json();import type { Propertie } from "https://example-data.com/types/properties.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/properties/164"
);
const propertie = (await res.json()) as Propertie;import requests
res = requests.get(
"https://example-data.com/api/v1/properties/164"
)
propertie = res.json() {
"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"
}