example-data.com
Menu
Browse docs and collections

Overview

listings / #117

Townhouse in Lake Emelyberg

townhouse · Lake Emelyberg · $2,079,200

67551 Daren Parks

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/listings/117" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/listings/117"
);
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/117"
);
const listing = (await res.json()) as Listing;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/listings/117"
)
listing = res.json()

Response

{
  "id": 117,
  "agentUserId": 22,
  "propertyType": "townhouse",
  "title": "Townhouse in Lake Emelyberg",
  "description": "Asporto utroque vorax sui summopere commemoro patruus torrens patruus. Carus laudantium complectus tepidus valens terra ut alo trepide. Utor verecundia cura voco.\n\nAnte delibero tremo tergo. Claudeo thema pecto deputo usitas vobis. Aequus vester amita talis cavus.\n\nSollers abstergo voluntarius ubi cura auctor combibo. Curvo conscendo cupiditate. Tremo coruscus reprehenderit vesper.",
  "price": 2079200,
  "currency": "USD",
  "bedrooms": 4,
  "bathrooms": 2,
  "squareFeet": 7147,
  "address": "67551 Daren Parks",
  "city": "Lake Emelyberg",
  "region": "West Virginia",
  "countryAlpha2": "IT",
  "latitude": 47.182967,
  "longitude": -70.195842,
  "status": "sold",
  "listedAt": "2025-10-30T07:09:37.971Z",
  "createdAt": "2025-10-29T19:31:38.642Z",
  "updatedAt": "2026-02-27T15:06:30.332Z"
}