Apartment in Abelardoland
apartment · Abelardoland · $1,889,700
78041 9th Street
Overview
listings / #102
apartment · Abelardoland · $1,889,700
78041 9th Street
Request
curl example
curl -sS \ "https://example-data.com/api/v1/listings/102" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/listings/102" ); 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/102"
);
const listing = (await res.json()) as Listing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/listings/102"
)
listing = res.json() Response
{
"id": 102,
"agentUserId": 187,
"propertyType": "apartment",
"title": "Apartment in Abelardoland",
"description": "Adaugeo exercitationem desidero blandior voluptatum amaritudo temeritas abeo culpo. Tonsor alveus creta quas tricesimus succedo vacuus paens. Vel pecco aranea vilis defendo.\n\nTerror cohibeo utrum perspiciatis celo defaeco thymbra decretum. Bellum cultellus verbum curtus nemo centum cuius. Sublime charisma animus infit bis sophismata.\n\nVerto ante defaeco eos amplus tristis baiulus absorbeo. Amo modi tumultus audeo voluptates debilito cilicium crur. Turba concido conscendo speciosus solum ustulo timor attollo paens.",
"price": 1889700,
"currency": "USD",
"bedrooms": 1,
"bathrooms": 3.5,
"squareFeet": 11775,
"address": "78041 9th Street",
"city": "Abelardoland",
"region": "Texas",
"countryAlpha2": "PH",
"latitude": 42.844031,
"longitude": -102.921349,
"status": "active",
"listedAt": "2024-10-14T08:11:10.225Z",
"createdAt": "2024-10-13T13:16:57.924Z",
"updatedAt": "2025-01-09T06:57:15.465Z"
}