Apartment in South Marshall
apartment · South Marshall · $3,420,000
3377 DuBuque Heights
Overview
listings / #30
apartment · South Marshall · $3,420,000
3377 DuBuque Heights
Request
curl example
curl -sS \ "https://example-data.com/api/v1/listings/30" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/listings/30" ); 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/30"
);
const listing = (await res.json()) as Listing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/listings/30"
)
listing = res.json() Response
{
"id": 30,
"agentUserId": 250,
"propertyType": "apartment",
"title": "Apartment in South Marshall",
"description": "Creptio vesper arbor caveo tardus possimus. Sonitus unde creator tam cavus. Suasoria ea carbo.\n\nUmbra theatrum torqueo chirographum ceno vesper aperte derideo. Voluptate adsidue coaegresco conatus assumenda demonstro communis cunctatio. Bellicus blanditiis baiulus claustrum damnatio.\n\nTabella xiphias tero convoco caecus amissio cras ocer. Patruus harum cogito spargo appositus comes cognomen blandior. Temperantia solio turbo tendo consequuntur bardus templum volup.",
"price": 3420000,
"currency": "USD",
"bedrooms": 5,
"bathrooms": 0.5,
"squareFeet": 11989,
"address": "3377 DuBuque Heights",
"city": "South Marshall",
"region": "Illinois",
"countryAlpha2": "CN",
"latitude": -39.715854,
"longitude": -103.520416,
"status": "pending",
"listedAt": "2026-03-13T18:17:14.909Z",
"createdAt": "2026-03-13T11:26:23.383Z",
"updatedAt": "2026-03-29T10:32:39.425Z"
}