example-data.com
Menu
Browse docs and collections

Overview

listings / #130

Townhouse in Lake Velvaland

townhouse · Lake Velvaland · $1,484,600

73205 Manor Way

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 130,
  "agentUserId": 72,
  "propertyType": "townhouse",
  "title": "Townhouse in Lake Velvaland",
  "description": "Curvo sub territo esse versus quidem sublime animi acies. Ancilla urbanus ascisco amplus agnitio. Attero color debitis carbo adipisci conor.\n\nCurriculum tego strenuus accusamus. Curiositas cerno circumvenio ratione verus thalassinus laudantium cupiditas. Absque solitudo argentum.",
  "price": 1484600,
  "currency": "USD",
  "bedrooms": 5,
  "bathrooms": 2,
  "squareFeet": 4719,
  "address": "73205 Manor Way",
  "city": "Lake Velvaland",
  "region": "Kentucky",
  "countryAlpha2": "ID",
  "latitude": -42.230116,
  "longitude": -154.813553,
  "status": "active",
  "listedAt": "2026-03-28T20:07:33.098Z",
  "createdAt": "2026-03-27T21:05:30.716Z",
  "updatedAt": "2026-05-10T22:11:14.263Z"
}