Commercial Space in Ryanncester
commercial · Ryanncester · $4,882,700
829 E 2nd Street
Overview
listings / #143
commercial · Ryanncester · $4,882,700
829 E 2nd Street
Request
curl example
curl -sS \ "https://example-data.com/api/v1/listings/143" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/listings/143" ); 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/143"
);
const listing = (await res.json()) as Listing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/listings/143"
)
listing = res.json() Response
{
"id": 143,
"agentUserId": 205,
"propertyType": "commercial",
"title": "Commercial Space in Ryanncester",
"description": "Deleniti velit demitto admoneo adsum vetus casso tergeo. Depono auditor sublime universe aptus maxime audacia basium vulnus depulso. Demergo volo antea demum.\n\nPauci congregatio aestivus ademptio eligendi turbo tactus stella. Vergo optio nam adsum subvenio tibi curto aegrotatio defluo. Sonitus solvo arcus vobis expedita.\n\nCivitas ventosus arx. Supplanto sollicito deporto theatrum sublime speciosus. Ademptio vero tabesco amita confugo aggero certus causa pectus.",
"price": 4882700,
"currency": "USD",
"bedrooms": 0,
"bathrooms": 2,
"squareFeet": 2746,
"address": "829 E 2nd Street",
"city": "Ryanncester",
"region": "New York",
"countryAlpha2": "TH",
"latitude": 6.777878,
"longitude": -126.960489,
"status": "pending",
"listedAt": "2025-02-23T19:25:36.312Z",
"createdAt": "2025-02-23T08:23:36.788Z",
"updatedAt": "2026-03-09T06:50:38.740Z"
}