example-data.com
Menu
Browse docs and collections

Overview

listings / #131

Land in Killeen

land · Killeen · $1,253,300

98546 Kaleigh Port

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 131,
  "agentUserId": 72,
  "propertyType": "land",
  "title": "Land in Killeen",
  "description": "Dapifer vacuus hic. Quibusdam cotidie quos nesciunt copiose vereor delinquo adflicto perferendis coaegresco. Conspergo dolor correptius aurum adficio solus crebro repudiandae velociter.\n\nCandidus color ad ullam virga. Acquiro nostrum aveho id dolorum agnitio aeternus colo solio claustrum. Cras denique deludo cernuus quam tenus.",
  "price": 1253300,
  "currency": "USD",
  "bedrooms": 0,
  "bathrooms": 0,
  "squareFeet": 619090,
  "address": "98546 Kaleigh Port",
  "city": "Killeen",
  "region": "Georgia",
  "countryAlpha2": "CL",
  "latitude": -24.347061,
  "longitude": 71.271519,
  "status": "withdrawn",
  "listedAt": "2025-06-15T12:43:34.801Z",
  "createdAt": "2025-06-15T06:13:32.977Z",
  "updatedAt": "2025-07-25T02:23:23.947Z"
}