Alexaneberg House
house · Alexaneberg · $1223.83/night · ★ 4.0 (157)
117 Tyrel Mount
Overview
properties / #80
house · Alexaneberg · $1223.83/night · ★ 4.0 (157)
117 Tyrel Mount
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/80" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/80" ); 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/80"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/80"
)
propertie = res.json() Response
{
"id": 80,
"name": "Alexaneberg House",
"slug": "alexaneberg-house-80",
"type": "house",
"countryAlpha2": "SG",
"city": "Alexaneberg",
"address": "117 Tyrel Mount",
"latitude": 41.099119,
"longitude": -89.774698,
"bedrooms": 6,
"bathrooms": 1,
"maxGuests": 2,
"pricePerNight": 1223.83,
"currency": "BRL",
"rating": 4,
"ratingCount": 157,
"hostUserId": 132,
"createdAt": "2026-04-27T10:05:48.119Z",
"updatedAt": "2026-05-04T04:04:01.726Z"
}