example-data.com
Menu
Browse docs and collections

Overview

listings / #81

Condo in Okunevacester

condo · Okunevacester · $4,023,900

92875 Kuphal Terrace

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 81,
  "agentUserId": 223,
  "propertyType": "condo",
  "title": "Condo in Okunevacester",
  "description": "Adeo tunc admoneo velut vicinus tripudio triduana claustrum aveho. Subnecto pecus vesica. Vir carpo synagoga.\n\nSuper sublime spargo bos tumultus depopulo voveo velit astrum. Turba libero benigne cum quae suppono admiratio pecus. Turbo calamitas vere culpa.\n\nMinus adstringo sub. Contra aggredior tergeo est amaritudo. Quo voluptatum depopulo accusantium quos vobis.",
  "price": 4023900,
  "currency": "USD",
  "bedrooms": 3,
  "bathrooms": 4,
  "squareFeet": 3149,
  "address": "92875 Kuphal Terrace",
  "city": "Okunevacester",
  "region": "South Dakota",
  "countryAlpha2": "GR",
  "latitude": 38.3976,
  "longitude": 95.253491,
  "status": "active",
  "listedAt": "2025-04-09T00:21:29.251Z",
  "createdAt": "2025-04-08T20:05:07.912Z",
  "updatedAt": "2025-10-05T14:23:33.522Z"
}