example-data.com
Menu
Browse docs and collections

Overview

listings / #48

Townhouse in North General

townhouse · North General · $4,038,800

565 Aufderhar Islands

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/listings/48" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/listings/48"
);
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/48"
);
const listing = (await res.json()) as Listing;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/listings/48"
)
listing = res.json()

Response

{
  "id": 48,
  "agentUserId": 130,
  "propertyType": "townhouse",
  "title": "Townhouse in North General",
  "description": "Desparatus valde quo. Chirographum nemo adeo stips. Reprehenderit temporibus illo tamisium somniculosus acidus cibo exercitationem terreo.\n\nNihil stabilis iusto cultellus claudeo contigo speculum pecco. Viriliter articulus apparatus thermae alius arbustum tergeo. Traho pauper comprehendo blanditiis anser sub ambitus currus.",
  "price": 4038800,
  "currency": "USD",
  "bedrooms": 3,
  "bathrooms": 3,
  "squareFeet": 10228,
  "address": "565 Aufderhar Islands",
  "city": "North General",
  "region": "Michigan",
  "countryAlpha2": "PK",
  "latitude": 9.528874,
  "longitude": -29.69888,
  "status": "sold",
  "listedAt": "2024-08-16T05:22:42.101Z",
  "createdAt": "2024-08-15T08:45:48.451Z",
  "updatedAt": "2025-05-21T05:44:46.414Z"
}