example-data.com
Menu
Browse docs and collections

Overview

listings / #62

Townhouse in Jettburgh

townhouse · Jettburgh · $3,904,100

884 N Park Street

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 62,
  "agentUserId": 68,
  "propertyType": "townhouse",
  "title": "Townhouse in Jettburgh",
  "description": "Patruus solus iusto. Angustus auctor vulgus acies ad commemoro ipsam alii comis. Totus culpa tam fuga curvo traho voluntarius.\n\nDefleo absorbeo ex patior cerno auxilium compono. Deprecator vapulus terminatio supellex dedecor caritas synagoga deputo centum inflammatio. Vociferor solvo sublime custodia canonicus.",
  "price": 3904100,
  "currency": "USD",
  "bedrooms": 3,
  "bathrooms": 0.5,
  "squareFeet": 3483,
  "address": "884 N Park Street",
  "city": "Jettburgh",
  "region": "New Hampshire",
  "countryAlpha2": "ES",
  "latitude": -19.113737,
  "longitude": 169.431263,
  "status": "off_market",
  "listedAt": "2024-08-28T03:56:30.585Z",
  "createdAt": "2024-08-27T12:32:58.996Z",
  "updatedAt": "2025-02-10T17:39:33.998Z"
}