House in Laredo
house · Laredo · $1,566,100
30686 10th Street
Overview
listings / #33
house · Laredo · $1,566,100
30686 10th Street
Request
curl example
curl -sS \ "https://example-data.com/api/v1/listings/33" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/listings/33" ); 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/33"
);
const listing = (await res.json()) as Listing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/listings/33"
)
listing = res.json() Response
{
"id": 33,
"agentUserId": 168,
"propertyType": "house",
"title": "House in Laredo",
"description": "Dolor spoliatio subvenio territo viriliter. Canis praesentium cado substantia. Colligo suggero thalassinus crinis demoror.\n\nComes ad cogito corroboro vaco thermae varietas victoria tersus. Consectetur derideo tricesimus certe statim casus audio decretum. Communis fuga vinculum adversus ab sursum assumenda adfero vaco adamo.",
"price": 1566100,
"currency": "USD",
"bedrooms": 1,
"bathrooms": 4.5,
"squareFeet": 8579,
"address": "30686 10th Street",
"city": "Laredo",
"region": "Virginia",
"countryAlpha2": "AU",
"latitude": 10.143589,
"longitude": -115.342098,
"status": "sold",
"listedAt": "2025-01-13T10:25:23.260Z",
"createdAt": "2025-01-12T13:26:01.687Z",
"updatedAt": "2025-04-17T21:37:45.106Z"
}