example-data.com
Menu
Browse docs and collections

Overview

listings / #126

House in Folsom

house · Folsom · $2,312,700

99638 Cassin Shore

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 126,
  "agentUserId": 20,
  "propertyType": "house",
  "title": "House in Folsom",
  "description": "Bellicus vilitas ad utrum suspendo animadverto. In commemoro dedecor tamdiu absens socius admoneo civis desidero theatrum. Distinctio cotidie eligendi vae ver ad vesco rem.\n\nTraho caterva blandior vomica conturbo debeo tendo tumultus. Confido tamquam teres vitium. Ascisco advenio strenuus comitatus.",
  "price": 2312700,
  "currency": "USD",
  "bedrooms": 0,
  "bathrooms": 5,
  "squareFeet": 7555,
  "address": "99638 Cassin Shore",
  "city": "Folsom",
  "region": "Connecticut",
  "countryAlpha2": "CL",
  "latitude": 37.545111,
  "longitude": -49.354768,
  "status": "active",
  "listedAt": "2025-10-03T03:50:49.048Z",
  "createdAt": "2025-10-02T11:24:08.616Z",
  "updatedAt": "2026-03-12T16:05:31.358Z"
}