Apartment in Sengerberg
apartment · Sengerberg · $2,797,400
81745 Nestor Expressway
Overview
listings / #22
apartment · Sengerberg · $2,797,400
81745 Nestor Expressway
Request
curl example
curl -sS \ "https://example-data.com/api/v1/listings/22" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/listings/22" ); 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/22"
);
const listing = (await res.json()) as Listing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/listings/22"
)
listing = res.json() Response
{
"id": 22,
"agentUserId": 61,
"propertyType": "apartment",
"title": "Apartment in Sengerberg",
"description": "Angulus tactus crebro volutabrum pectus demoror tabesco delicate sum. Capitulus minus sed circumvenio cunae teres votum cum. Sponte suggero centum tenus.\n\nCensura cursus nemo aeger claro cariosus caritas carmen cedo. Nisi crur iusto. Modi ocer depono vulnero trucido textilis.\n\nAro cohibeo uredo. Utroque sunt trepide deficio. Exercitationem creo odit assumenda vilicus similique enim sodalitas aetas.",
"price": 2797400,
"currency": "USD",
"bedrooms": 6,
"bathrooms": 1,
"squareFeet": 8660,
"address": "81745 Nestor Expressway",
"city": "Sengerberg",
"region": "Utah",
"countryAlpha2": "CN",
"latitude": -41.446959,
"longitude": -34.21099,
"status": "withdrawn",
"listedAt": "2024-11-30T23:38:29.303Z",
"createdAt": "2024-11-30T21:33:13.228Z",
"updatedAt": "2025-07-29T02:43:51.681Z"
}