example-data.com
Menu
Browse docs and collections

Overview

listings / #32

Townhouse in Demariostad

townhouse · Demariostad · $2,813,600

68199 Schaefer Glen

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 32,
  "agentUserId": 168,
  "propertyType": "townhouse",
  "title": "Townhouse in Demariostad",
  "description": "Volubilis est territo voco canto repellat certus. Ciminatio quas despecto venustas suscipio saepe viridis usitas triumphus. Vesper bardus voveo vesco.\n\nSapiente suscipio voluptas. Quis currus rem creta strenuus utpote teres bellum. Repudiandae conitor uredo usitas alias.\n\nArguo cavus explicabo angulus sustineo defetiscor aeternus minus sui. Labore pectus aggredior tabgo casus pauci assumenda tot. Claro varietas bardus.",
  "price": 2813600,
  "currency": "USD",
  "bedrooms": 1,
  "bathrooms": 4,
  "squareFeet": 8329,
  "address": "68199 Schaefer Glen",
  "city": "Demariostad",
  "region": "Virginia",
  "countryAlpha2": "AE",
  "latitude": -23.872214,
  "longitude": 139.257816,
  "status": "active",
  "listedAt": "2025-11-05T12:21:51.250Z",
  "createdAt": "2025-11-05T01:12:43.606Z",
  "updatedAt": "2026-02-13T10:59:54.967Z"
}