Townhouse in Rapid City
townhouse · Rapid City · $4,933,000
4714 Ansel Burg
Overview
listings / #8
townhouse · Rapid City · $4,933,000
4714 Ansel Burg
Request
curl example
curl -sS \ "https://example-data.com/api/v1/listings/8" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/listings/8" ); 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/8"
);
const listing = (await res.json()) as Listing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/listings/8"
)
listing = res.json() Response
{
"id": 8,
"agentUserId": 75,
"propertyType": "townhouse",
"title": "Townhouse in Rapid City",
"description": "Solitudo amiculum vita degenero vomica depopulo earum. Thesaurus curvo capillus templum aperio vitiosus vetus crastinus. Hic ipsam averto supellex tabella.\n\nCogo mollitia adinventitias soleo. Taedium tonsor desino. Tunc absorbeo tero vito deorsum.",
"price": 4933000,
"currency": "USD",
"bedrooms": 6,
"bathrooms": 2,
"squareFeet": 11570,
"address": "4714 Ansel Burg",
"city": "Rapid City",
"region": "Alaska",
"countryAlpha2": "GR",
"latitude": 46.310414,
"longitude": 4.181477,
"status": "active",
"listedAt": "2026-02-17T01:06:48.482Z",
"createdAt": "2026-02-16T20:04:28.512Z",
"updatedAt": "2026-02-22T00:55:19.928Z"
}