East Constantinton House
house · East Constantinton · $149.18/night · ★ 3.7 (1068)
5960 Isobel Glen
Overview
properties / #180
house · East Constantinton · $149.18/night · ★ 3.7 (1068)
5960 Isobel Glen
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/180" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/180" ); 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/180"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/180"
)
propertie = res.json() Response
{
"id": 180,
"name": "East Constantinton House",
"slug": "east-constantinton-house-180",
"type": "house",
"countryAlpha2": "AR",
"city": "East Constantinton",
"address": "5960 Isobel Glen",
"latitude": 30.815114,
"longitude": -90.549084,
"bedrooms": 6,
"bathrooms": 0.5,
"maxGuests": 14,
"pricePerNight": 149.18,
"currency": "BRL",
"rating": 3.7,
"ratingCount": 1068,
"hostUserId": 27,
"createdAt": "2024-10-10T11:44:54.278Z",
"updatedAt": "2025-06-03T06:32:04.720Z"
}