example-data.com
Menu
Browse docs and collections

Overview

listings / #74

Townhouse in Lake Cheyenne

townhouse · Lake Cheyenne · $4,216,100

34448 Lakin Falls

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 74,
  "agentUserId": 219,
  "propertyType": "townhouse",
  "title": "Townhouse in Lake Cheyenne",
  "description": "Decretum arguo terreo aggredior mollitia magni. Confero triumphus atavus quos considero abduco viridis aveho cito defendo. Earum depromo voco ascisco cibus dedico argumentum tenuis thorax.\n\nUbi denique summa. Sequi coma decet bellicus decet autem auctor. Blandior acies strenuus denuncio depromo saepe.\n\nTergiversatio strues acies. Damnatio apostolus currus defero ea acervus tersus. Considero thesaurus delicate credo comparo abstergo asporto compello.",
  "price": 4216100,
  "currency": "USD",
  "bedrooms": 4,
  "bathrooms": 2.5,
  "squareFeet": 9514,
  "address": "34448 Lakin Falls",
  "city": "Lake Cheyenne",
  "region": "Connecticut",
  "countryAlpha2": "NO",
  "latitude": -52.991678,
  "longitude": -170.422217,
  "status": "active",
  "listedAt": "2026-05-19T12:00:24.288Z",
  "createdAt": "2026-05-18T18:36:07.800Z",
  "updatedAt": "2026-05-20T09:38:45.450Z"
}