example-data.com
Menu
Browse docs and collections

Overview

listings / #177

Townhouse in Dooleytown

townhouse · Dooleytown · $3,805,500

25318 Marlborough Road

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 177,
  "agentUserId": 207,
  "propertyType": "townhouse",
  "title": "Townhouse in Dooleytown",
  "description": "Minus sumptus basium vaco cultellus torrens suppellex abbas sto. Ciminatio paens cultura atrocitas tamisium sollicito. Reprehenderit stipes absorbeo ventosus vere dolorem asperiores voro.\n\nVivo cariosus agnosco thymbra adversus voluptatem confero creator pecco. Arx ceno debilito ulciscor attonbitus audax delego abeo varietas. Denuncio enim ullam suffragium canto cogito ultio tempora.",
  "price": 3805500,
  "currency": "USD",
  "bedrooms": 6,
  "bathrooms": 0.5,
  "squareFeet": 7014,
  "address": "25318 Marlborough Road",
  "city": "Dooleytown",
  "region": "Tennessee",
  "countryAlpha2": "NZ",
  "latitude": 7.521634,
  "longitude": -145.999274,
  "status": "active",
  "listedAt": "2025-05-25T02:48:29.047Z",
  "createdAt": "2025-05-24T05:26:22.796Z",
  "updatedAt": "2026-02-07T16:45:55.018Z"
}