example-data.com
Menu
Browse docs and collections

Overview

listings / #78

Condo in West Howell

condo · West Howell · $2,352,500

608 Leora Inlet

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 78,
  "agentUserId": 143,
  "propertyType": "condo",
  "title": "Condo in West Howell",
  "description": "Demens reiciendis sint. Quaerat inventore numquam solutio conculco verus comburo dicta virgo. Eveniet deinde denique concedo dapifer texo cornu.\n\nTamdiu colligo sollicito solvo antepono. Quaerat deorsum appello quo sit cimentarius harum molestias tabesco toties. Depono debeo amor.\n\nLaborum caecus adicio tactus addo ascisco ulterius molestias abundans usus. Amaritudo tener cunae aequitas vinum. Aegre contra tener advoco demoror via.\n\nDeprimo defaeco aestivus amplus placeat aequus spectaculum candidus. Abscido vere ait coaegresco succedo deinde. Sufficio taedium coma culpa cum videlicet adflicto tempus.",
  "price": 2352500,
  "currency": "USD",
  "bedrooms": 5,
  "bathrooms": 0.5,
  "squareFeet": 5701,
  "address": "608 Leora Inlet",
  "city": "West Howell",
  "region": "Maryland",
  "countryAlpha2": "NO",
  "latitude": -29.265441,
  "longitude": 69.694859,
  "status": "active",
  "listedAt": "2025-05-25T02:41:27.951Z",
  "createdAt": "2025-05-24T06:33:00.724Z",
  "updatedAt": "2025-11-25T09:36:40.990Z"
}