Townhouse in Rapid City
townhouse · Rapid City · $4,933,000
4714 Ansel Burg
listings / #8
townhouse · Rapid City · $4,933,000
4714 Ansel Burg
curl -sS \
"https://example-data.com/api/v1/listings/8" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/listings/8"
);
const listing = await res.json();import type { Listing } from "https://example-data.com/types/listings.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/listings/8"
);
const listing = (await res.json()) as Listing;import requests
res = requests.get(
"https://example-data.com/api/v1/listings/8"
)
listing = res.json() {
"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"
}