example-data.com
Menu
Browse docs and collections

Overview

listings / #79

Townhouse in Port Libbie

townhouse · Port Libbie · $4,467,900

79687 Zulauf Road

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 79,
  "agentUserId": 143,
  "propertyType": "townhouse",
  "title": "Townhouse in Port Libbie",
  "description": "Alveus bellicus solitudo decimus brevis. Harum abscido condico. Tolero uxor neque tonsor volaticus.\n\nAdministratio umbra crudelis tunc. Solum attonbitus valens doloribus est adicio angelus argumentum. Vere cornu tot.",
  "price": 4467900,
  "currency": "USD",
  "bedrooms": 6,
  "bathrooms": 4,
  "squareFeet": 5751,
  "address": "79687 Zulauf Road",
  "city": "Port Libbie",
  "region": "Minnesota",
  "countryAlpha2": "DK",
  "latitude": -2.648335,
  "longitude": -151.948434,
  "status": "pending",
  "listedAt": "2024-07-10T13:19:37.570Z",
  "createdAt": "2024-07-09T22:29:19.396Z",
  "updatedAt": "2025-10-20T17:19:44.935Z"
}