Edina Apartment
apartment · Edina · $1414.82/night · ★ 3.8 (1511)
8583 Boyle Expressway
Overview
properties / #15
apartment · Edina · $1414.82/night · ★ 3.8 (1511)
8583 Boyle Expressway
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/15" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/15" ); 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/15"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/15"
)
propertie = res.json() Response
{
"id": 15,
"name": "Edina Apartment",
"slug": "edina-apartment-15",
"type": "apartment",
"countryAlpha2": "ZA",
"city": "Edina",
"address": "8583 Boyle Expressway",
"latitude": 33.639655,
"longitude": -160.318198,
"bedrooms": 3,
"bathrooms": 3,
"maxGuests": 1,
"pricePerNight": 1414.82,
"currency": "USD",
"rating": 3.8,
"ratingCount": 1511,
"hostUserId": 126,
"createdAt": "2025-12-19T09:20:18.578Z",
"updatedAt": "2026-04-25T01:30:47.957Z"
}