example-data.com
Menu
Browse docs and collections

Overview

listings / #135

Condo in Fort Evieshire

condo · Fort Evieshire · $2,506,900

16538 W Washington Avenue

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 135,
  "agentUserId": 30,
  "propertyType": "condo",
  "title": "Condo in Fort Evieshire",
  "description": "Damnatio cedo testimonium debitis subseco. Adimpleo depraedor adflicto vapulus unde. Explicabo truculenter vox cado vulariter.\n\nPossimus curvo abeo. Celebrer summa volup curatio decimus. Cito distinctio sustineo summisse voluptas vinitor suffragium eum doloribus stella.",
  "price": 2506900,
  "currency": "USD",
  "bedrooms": 5,
  "bathrooms": 2.5,
  "squareFeet": 5818,
  "address": "16538 W Washington Avenue",
  "city": "Fort Evieshire",
  "region": "Washington",
  "countryAlpha2": "KR",
  "latitude": 48.141992,
  "longitude": 72.962835,
  "status": "pending",
  "listedAt": "2024-12-09T13:35:40.681Z",
  "createdAt": "2024-12-09T09:09:25.853Z",
  "updatedAt": "2025-07-05T10:04:53.399Z"
}