example-data.com
Menu
Browse docs and collections

Overview

listings / #127

House in South Carley

house · South Carley · $2,839,000

5447 Miller Trace

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 127,
  "agentUserId": 72,
  "propertyType": "house",
  "title": "House in South Carley",
  "description": "Tempus cursim thalassinus angelus turpis solus tubineus artificiose. Thymum stipes cursus aegrotatio canis textus capillus. Ultra damnatio amo ademptio eveniet tero.\n\nCultellus vespillo ante nam vicissitudo. Numquam confero delectatio. Ulciscor abundans amplexus suppellex utroque uberrime fuga cupiditate vomica.",
  "price": 2839000,
  "currency": "USD",
  "bedrooms": 5,
  "bathrooms": 5,
  "squareFeet": 3650,
  "address": "5447 Miller Trace",
  "city": "South Carley",
  "region": "North Carolina",
  "countryAlpha2": "IL",
  "latitude": 11.471945,
  "longitude": -126.552446,
  "status": "active",
  "listedAt": "2025-06-17T02:11:55.642Z",
  "createdAt": "2025-06-16T09:52:29.938Z",
  "updatedAt": "2025-08-28T14:55:40.929Z"
}