Condo in Casimerport
condo · Casimerport · $276,400
170 Victoria Road
Overview
listings / #114
condo · Casimerport · $276,400
170 Victoria Road
Request
curl example
curl -sS \ "https://example-data.com/api/v1/listings/114" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/listings/114" ); 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/114"
);
const listing = (await res.json()) as Listing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/listings/114"
)
listing = res.json() Response
{
"id": 114,
"agentUserId": 121,
"propertyType": "condo",
"title": "Condo in Casimerport",
"description": "Strues valeo collum dedecor enim. Arbustum celer aperiam apparatus taceo deputo. Cohaero tempora tabula tergum.\n\nPerferendis volo validus. Subseco tertius coma voluptas. Tondeo ater reprehenderit.",
"price": 276400,
"currency": "USD",
"bedrooms": 1,
"bathrooms": 1.5,
"squareFeet": 10707,
"address": "170 Victoria Road",
"city": "Casimerport",
"region": "Massachusetts",
"countryAlpha2": "IL",
"latitude": 58.233111,
"longitude": -3.287856,
"status": "active",
"listedAt": "2025-07-03T07:00:07.964Z",
"createdAt": "2025-07-03T00:03:56.911Z",
"updatedAt": "2026-02-06T20:14:37.974Z"
}