Townhouse in Bradenton
townhouse · Bradenton · $2,472,100
16627 Jevon Shoals
Overview
listings / #169
townhouse · Bradenton · $2,472,100
16627 Jevon Shoals
Request
curl example
curl -sS \ "https://example-data.com/api/v1/listings/169" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/listings/169" ); 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/169"
);
const listing = (await res.json()) as Listing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/listings/169"
)
listing = res.json() Response
{
"id": 169,
"agentUserId": 218,
"propertyType": "townhouse",
"title": "Townhouse in Bradenton",
"description": "Curto depulso spero adficio. Vita tripudio venia iure pectus decumbo terebro. Spiritus candidus occaecati tepesco vespillo suggero auctus cubicularis supplanto.\n\nPraesentium porro somnus sum aufero. Timidus nemo aptus statim sum aeger virtus voveo tristis apparatus. Vos cado eos.\n\nArbor eaque inventore utique laboriosam umerus aggero decumbo adulescens culpa. Ullus trans utpote volaticus temporibus ultra taceo atrocitas terebro. Fugit cicuta toties sit aeneus.",
"price": 2472100,
"currency": "USD",
"bedrooms": 4,
"bathrooms": 4,
"squareFeet": 3690,
"address": "16627 Jevon Shoals",
"city": "Bradenton",
"region": "Washington",
"countryAlpha2": "BR",
"latitude": 36.45289,
"longitude": 159.033192,
"status": "pending",
"listedAt": "2025-04-15T03:17:55.668Z",
"createdAt": "2025-04-15T00:09:37.715Z",
"updatedAt": "2026-01-16T06:29:41.459Z"
}