example-data.com
Menu
Browse docs and collections

Overview

listings / #148

Apartment in New Soniachester

apartment · New Soniachester · $2,197,400

4141 E 1st Street

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 148,
  "agentUserId": 204,
  "propertyType": "apartment",
  "title": "Apartment in New Soniachester",
  "description": "Quisquam terminatio surculus acerbitas utrum. Cedo aliqua laboriosam viscus vero avaritia ademptio. Architecto dolor hic vespillo comedo amplexus cura strues amaritudo nostrum.\n\nAggredior adhuc vobis toties acervus coniecto pauci hic substantia. Vulariter textus verecundia subiungo atqui termes verus. Color succedo sunt curriculum nihil cui cariosus teneo.",
  "price": 2197400,
  "currency": "USD",
  "bedrooms": 4,
  "bathrooms": 2.5,
  "squareFeet": 9524,
  "address": "4141 E 1st Street",
  "city": "New Soniachester",
  "region": "Illinois",
  "countryAlpha2": "MY",
  "latitude": -11.117441,
  "longitude": 164.700241,
  "status": "sold",
  "listedAt": "2025-03-05T06:11:39.800Z",
  "createdAt": "2025-03-04T20:42:02.984Z",
  "updatedAt": "2026-03-02T23:21:24.524Z"
}