example-data.com
Menu
Browse docs and collections

Overview

listings / #141

House in North Shakiraworth

house · North Shakiraworth · $2,398,900

20956 Ferry Road

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 141,
  "agentUserId": 205,
  "propertyType": "house",
  "title": "House in North Shakiraworth",
  "description": "Versus cibus adulatio deleniti teres bardus carus. Ocer arma voco truculenter varius aggero cupio libero antiquus vere. Ambitus tripudio totus cognomen depono vacuus quas cubo callide acer.\n\nVigor aer cupressus ambitus occaecati aperiam necessitatibus defessus arbitro. Cernuus conforto abscido tunc bis ventosus subvenio laborum. Crur thermae crastinus vulgus carpo centum tot.",
  "price": 2398900,
  "currency": "USD",
  "bedrooms": 3,
  "bathrooms": 1,
  "squareFeet": 6556,
  "address": "20956 Ferry Road",
  "city": "North Shakiraworth",
  "region": "North Dakota",
  "countryAlpha2": "PT",
  "latitude": 12.510667,
  "longitude": 22.724449,
  "status": "sold",
  "listedAt": "2026-04-09T00:40:26.940Z",
  "createdAt": "2026-04-08T09:52:43.879Z",
  "updatedAt": "2026-05-20T11:09:44.318Z"
}