Braxtonside Apartment
apartment · Braxtonside · $728.25/night · ★ 3.5 (1135)
7891 W Market Street
Overview
properties / #112
apartment · Braxtonside · $728.25/night · ★ 3.5 (1135)
7891 W Market Street
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/112" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/112" ); 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/112"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/112"
)
propertie = res.json() Response
{
"id": 112,
"name": "Braxtonside Apartment",
"slug": "braxtonside-apartment-112",
"type": "apartment",
"countryAlpha2": "NZ",
"city": "Braxtonside",
"address": "7891 W Market Street",
"latitude": 40.116834,
"longitude": -68.09697,
"bedrooms": 4,
"bathrooms": 0.5,
"maxGuests": 6,
"pricePerNight": 728.25,
"currency": "SGD",
"rating": 3.5,
"ratingCount": 1135,
"hostUserId": 144,
"createdAt": "2025-03-14T05:41:14.860Z",
"updatedAt": "2025-06-02T07:44:38.409Z"
}