example-data.com
Menu
Browse docs and collections

Overview

listings / #132

House in North Venaview

house · North Venaview · $2,549,000

45397 Pietro Isle

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 132,
  "agentUserId": 30,
  "propertyType": "house",
  "title": "House in North Venaview",
  "description": "Tabgo crastinus caput aureus stella vinitor dolorem modi. Blandior vitiosus vomica fugit canonicus cupressus adimpleo. Thymum illum curia venustas solus iste canonicus vox alo denique.\n\nAsporto altus aestas administratio campana velut. Volva creator sapiente. Defungo placeat natus ea confugo delibero.",
  "price": 2549000,
  "currency": "USD",
  "bedrooms": 2,
  "bathrooms": 1,
  "squareFeet": 3447,
  "address": "45397 Pietro Isle",
  "city": "North Venaview",
  "region": "Kentucky",
  "countryAlpha2": "MA",
  "latitude": -37.269545,
  "longitude": 28.122499,
  "status": "sold",
  "listedAt": "2025-07-24T04:13:04.949Z",
  "createdAt": "2025-07-23T23:09:06.995Z",
  "updatedAt": "2025-08-26T07:47:29.308Z"
}