example-data.com

listings / #114

Condo in Casimerport

condo · Casimerport · $276,400

170 Victoria Road

Component variants

Related

Referenced by

curl -sS \
  "https://example-data.com/api/v1/listings/114" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/listings/114"
);
const listing = await res.json();
import type { Listing } from "https://example-data.com/types/listings.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/listings/114"
);
const listing = (await res.json()) as Listing;
import requests

res = requests.get(
    "https://example-data.com/api/v1/listings/114"
)
listing = res.json()
{
  "id": 114,
  "agentUserId": 121,
  "propertyType": "condo",
  "title": "Condo in Casimerport",
  "description": "Strues valeo collum dedecor enim. Arbustum celer aperiam apparatus taceo deputo. Cohaero tempora tabula tergum.\n\nPerferendis volo validus. Subseco tertius coma voluptas. Tondeo ater reprehenderit.",
  "price": 276400,
  "currency": "USD",
  "bedrooms": 1,
  "bathrooms": 1.5,
  "squareFeet": 10707,
  "address": "170 Victoria Road",
  "city": "Casimerport",
  "region": "Massachusetts",
  "countryAlpha2": "IL",
  "latitude": 58.233111,
  "longitude": -3.287856,
  "status": "active",
  "listedAt": "2025-07-03T07:00:07.964Z",
  "createdAt": "2025-07-03T00:03:56.911Z",
  "updatedAt": "2026-02-06T20:14:37.974Z"
}
Draftbit