Townhouse in North Angelicaview
townhouse · North Angelicaview · $4,158,600
826 Alexie Isle
Overview
listings / #182
townhouse · North Angelicaview · $4,158,600
826 Alexie Isle
Request
curl example
curl -sS \ "https://example-data.com/api/v1/listings/182" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/listings/182" ); const listing = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/listings.d.ts https://example-data.com/types/listings.d.ts
import type { Listing } from "./types/listings";
const res = await fetch(
"https://example-data.com/api/v1/listings/182"
);
const listing = (await res.json()) as Listing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/listings/182"
)
listing = res.json() Response
{
"id": 182,
"agentUserId": 235,
"propertyType": "townhouse",
"title": "Townhouse in North Angelicaview",
"description": "Ager strenuus tyrannus venio. Optio spero angulus auxilium demum cupiditate. Decet synagoga voluptatum.\n\nDerelinquo tabgo cinis demonstro. Careo demitto virtus urbanus claro universe. Deprecator ventito demonstro summopere vulticulus aeger.",
"price": 4158600,
"currency": "USD",
"bedrooms": 6,
"bathrooms": 0.5,
"squareFeet": 7761,
"address": "826 Alexie Isle",
"city": "North Angelicaview",
"region": "Montana",
"countryAlpha2": "SG",
"latitude": -34.696497,
"longitude": 34.506672,
"status": "pending",
"listedAt": "2024-10-12T21:06:05.883Z",
"createdAt": "2024-10-12T13:46:57.693Z",
"updatedAt": "2026-02-12T03:49:28.374Z"
}