West Odessastead Apartment
apartment · West Odessastead · $211.4/night · ★ 4.1 (473)
1110 Lueilwitz Squares
Overview
properties / #66
apartment · West Odessastead · $211.4/night · ★ 4.1 (473)
1110 Lueilwitz Squares
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/66" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/66" ); 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/66"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/66"
)
propertie = res.json() Response
{
"id": 66,
"name": "West Odessastead Apartment",
"slug": "west-odessastead-apartment-66",
"type": "apartment",
"countryAlpha2": "US",
"city": "West Odessastead",
"address": "1110 Lueilwitz Squares",
"latitude": 26.781857,
"longitude": -14.42599,
"bedrooms": 2,
"bathrooms": 2,
"maxGuests": 4,
"pricePerNight": 211.4,
"currency": "EUR",
"rating": 4.1,
"ratingCount": 473,
"hostUserId": 226,
"createdAt": "2025-04-16T19:56:15.788Z",
"updatedAt": "2026-01-06T19:29:12.941Z"
}