example-data.com
Menu
Browse docs and collections

Overview

listings / #21

Apartment in Lorain

apartment · Lorain · $2,852,400

668 Weissnat Expressway

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 21,
  "agentUserId": 92,
  "propertyType": "apartment",
  "title": "Apartment in Lorain",
  "description": "Antepono conventus terreo bestia aperte. Deprecator omnis ultio corrigo decimus victus admoveo amplitudo ambitus itaque. Casso confugo despecto deorsum abbas vacuus arx admoneo corpus.\n\nConatus thalassinus voluptate. Veritatis dolor vinco demum. Auditor aeternus aliquid compello ulterius aqua crux.",
  "price": 2852400,
  "currency": "USD",
  "bedrooms": 1,
  "bathrooms": 1.5,
  "squareFeet": 9656,
  "address": "668 Weissnat Expressway",
  "city": "Lorain",
  "region": "Louisiana",
  "countryAlpha2": "KR",
  "latitude": -4.319338,
  "longitude": -179.510227,
  "status": "withdrawn",
  "listedAt": "2026-04-28T13:23:34.569Z",
  "createdAt": "2026-04-27T21:48:53.264Z",
  "updatedAt": "2026-05-10T21:25:53.467Z"
}