example-data.com
Menu
Browse docs and collections

Overview

listings / #19

Land in Gerlachshire

land · Gerlachshire · $4,098,600

49878 Dangelo Forges

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 19,
  "agentUserId": 92,
  "propertyType": "land",
  "title": "Land in Gerlachshire",
  "description": "Contigo sopor cetera damno ait theatrum tero conventus tutamen. Abutor auditor amoveo dedico decor tonsor autem. Comburo taedium utrimque.\n\nCanis eaque nesciunt tamdiu succurro nobis. Non coerceo timidus tamen suscipit caelum. Sordeo modi texo synagoga adsum audentia nisi thalassinus.",
  "price": 4098600,
  "currency": "USD",
  "bedrooms": 0,
  "bathrooms": 0,
  "squareFeet": 303513,
  "address": "49878 Dangelo Forges",
  "city": "Gerlachshire",
  "region": "Connecticut",
  "countryAlpha2": "PK",
  "latitude": -4.188647,
  "longitude": 0.91569,
  "status": "active",
  "listedAt": "2026-04-27T11:05:08.797Z",
  "createdAt": "2026-04-26T22:56:59.016Z",
  "updatedAt": "2026-05-05T00:01:08.439Z"
}