example-data.com
Menu
Browse docs and collections

Overview

listings / #167

House in East Pietro

house · East Pietro · $1,924,500

827 Second Avenue

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 167,
  "agentUserId": 216,
  "propertyType": "house",
  "title": "House in East Pietro",
  "description": "Auctus creber vigilo absens ascit verbera abscido suffoco careo vociferor. Constans enim administratio depulso deorsum aperte officia. Laudantium tumultus suggero atrox cohors.\n\nDeleo sublime varietas animadverto. Taceo cornu vehemens ea caput. Coruscus coadunatio et caelum ante communis absorbeo video.",
  "price": 1924500,
  "currency": "USD",
  "bedrooms": 2,
  "bathrooms": 5,
  "squareFeet": 2396,
  "address": "827 Second Avenue",
  "city": "East Pietro",
  "region": "Virginia",
  "countryAlpha2": "TH",
  "latitude": 10.51358,
  "longitude": -143.838913,
  "status": "active",
  "listedAt": "2024-08-06T11:15:31.499Z",
  "createdAt": "2024-08-05T16:54:34.628Z",
  "updatedAt": "2025-01-06T07:49:44.772Z"
}