example-data.com
Menu
Browse docs and collections

Overview

listings / #51

Land in Ryannburgh

land · Ryannburgh · $3,817,100

57723 W Union Street

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 51,
  "agentUserId": 130,
  "propertyType": "land",
  "title": "Land in Ryannburgh",
  "description": "Contego vulnero ter tergum tricesimus usque abbas. Tergiversatio tenax concedo aedificium surculus advenio barba. Natus eius spes crux curso praesentium conservo debeo celo utroque.\n\nAureus iste caelum sumo usitas corpus thorax congregatio vulpes. Earum cui verbum. Admitto debilito blandior conservo ubi conturbo vulariter.\n\nTurpis usus adhaero cito vigilo deporto at. Supra maxime ter. Calcar tabula communis ascisco convoco ea a coadunatio animus.",
  "price": 3817100,
  "currency": "USD",
  "bedrooms": 0,
  "bathrooms": 0,
  "squareFeet": 985606,
  "address": "57723 W Union Street",
  "city": "Ryannburgh",
  "region": "Illinois",
  "countryAlpha2": "DE",
  "latitude": 46.84909,
  "longitude": -23.850552,
  "status": "pending",
  "listedAt": "2026-03-19T08:23:07.541Z",
  "createdAt": "2026-03-19T05:59:29.477Z",
  "updatedAt": "2026-05-06T21:16:33.404Z"
}