example-data.com
Menu
Browse docs and collections

Overview

listings / #65

House in East Eleazar

house · East Eleazar · $2,610,100

2249 Zieme Stream

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 65,
  "agentUserId": 194,
  "propertyType": "house",
  "title": "House in East Eleazar",
  "description": "Praesentium error viriliter valde suscipio ustilo vinum. Usus corroboro occaecati dolores adeo ater vereor ad aetas. Cruciamentum carcer termes.\n\nDedico vulariter votum cimentarius ago arto voluntarius cibo. Sono acceptus deleniti celo aranea strenuus despecto architecto tantillus. Canonicus comis libero casso angelus debilito arcesso vomica approbo.",
  "price": 2610100,
  "currency": "USD",
  "bedrooms": 2,
  "bathrooms": 1.5,
  "squareFeet": 4093,
  "address": "2249 Zieme Stream",
  "city": "East Eleazar",
  "region": "Wyoming",
  "countryAlpha2": "GB",
  "latitude": 55.264566,
  "longitude": -0.105632,
  "status": "withdrawn",
  "listedAt": "2025-10-04T11:04:08.292Z",
  "createdAt": "2025-10-04T09:59:56.407Z",
  "updatedAt": "2026-05-09T02:06:28.784Z"
}