Condo in Port Billieport
condo · Port Billieport · $4,317,300
28661 Harber Glen
Overview
listings / #160
condo · Port Billieport · $4,317,300
28661 Harber Glen
Request
curl example
curl -sS \ "https://example-data.com/api/v1/listings/160" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/listings/160" ); 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/160"
);
const listing = (await res.json()) as Listing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/listings/160"
)
listing = res.json() Response
{
"id": 160,
"agentUserId": 24,
"propertyType": "condo",
"title": "Condo in Port Billieport",
"description": "Contigo curo abutor despecto. Valetudo apparatus dedecor totidem vulgaris. Absque cohors vacuus.\n\nAspicio coadunatio tui ulterius. Amo usque averto temporibus amplitudo vomer capto. Tametsi ulterius textus sumptus id vestrum venio spoliatio textilis pectus.",
"price": 4317300,
"currency": "USD",
"bedrooms": 6,
"bathrooms": 2.5,
"squareFeet": 5773,
"address": "28661 Harber Glen",
"city": "Port Billieport",
"region": "Connecticut",
"countryAlpha2": "AR",
"latitude": -5.017345,
"longitude": -13.986106,
"status": "pending",
"listedAt": "2025-04-01T21:13:36.711Z",
"createdAt": "2025-04-01T19:41:14.165Z",
"updatedAt": "2026-05-05T13:08:17.595Z"
}