House in Youngstown
house · Youngstown · $1,531,100
98418 Von Ferry
Overview
listings / #165
house · Youngstown · $1,531,100
98418 Von Ferry
Request
curl example
curl -sS \ "https://example-data.com/api/v1/listings/165" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/listings/165" ); 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/165"
);
const listing = (await res.json()) as Listing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/listings/165"
)
listing = res.json() Response
{
"id": 165,
"agentUserId": 216,
"propertyType": "house",
"title": "House in Youngstown",
"description": "Curriculum adicio caritas succedo utor decretum adsidue. Teres optio conforto sustineo depono. Curatio volup virtus defetiscor ut ventosus corrumpo undique.\n\nRem textus termes clarus delinquo subito. Blanditiis depraedor demens testimonium chirographum occaecati casso verumtamen. Usus perferendis iste arma armarium.",
"price": 1531100,
"currency": "USD",
"bedrooms": 0,
"bathrooms": 5,
"squareFeet": 3712,
"address": "98418 Von Ferry",
"city": "Youngstown",
"region": "Montana",
"countryAlpha2": "PK",
"latitude": 17.431736,
"longitude": -20.643275,
"status": "active",
"listedAt": "2025-06-03T16:15:42.140Z",
"createdAt": "2025-06-02T22:26:11.187Z",
"updatedAt": "2025-09-28T03:39:08.508Z"
}