House in Duluth
house · Duluth · $2,266,900
472 Larkin Point
Overview
listings / #46
house · Duluth · $2,266,900
472 Larkin Point
Request
curl example
curl -sS \ "https://example-data.com/api/v1/listings/46" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/listings/46" ); 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/46"
);
const listing = (await res.json()) as Listing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/listings/46"
)
listing = res.json() Response
{
"id": 46,
"agentUserId": 142,
"propertyType": "house",
"title": "House in Duluth",
"description": "Autus compono trepide tyrannus ustilo utrum blanditiis victoria vilis amiculum. Timor quod ara arceo enim subseco cubo. Urbs usque caritas libero pecus cumque verbum.\n\nAnser doloribus dedecor. Voluptatum deprimo vicinus coma aequitas supra tibi aliquam accendo. Temporibus peior ventus una commodi comburo antiquus aeneus rem.",
"price": 2266900,
"currency": "USD",
"bedrooms": 5,
"bathrooms": 1,
"squareFeet": 1690,
"address": "472 Larkin Point",
"city": "Duluth",
"region": "Maine",
"countryAlpha2": "PT",
"latitude": 32.264298,
"longitude": 129.464528,
"status": "active",
"listedAt": "2026-04-17T10:10:58.010Z",
"createdAt": "2026-04-16T18:37:50.510Z",
"updatedAt": "2026-05-16T23:05:26.586Z"
}