example-data.com
Menu
Browse docs and collections

Overview

listings / #57

Land in Nathenstad

land · Nathenstad · $1,064,500

408 Roselyn Islands

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 57,
  "agentUserId": 217,
  "propertyType": "land",
  "title": "Land in Nathenstad",
  "description": "Audax astrum strues ager cito defero volutabrum arcus. Chirographum condico speciosus amplexus ipsam carbo tergiversatio adsuesco adhuc ullam. Exercitationem porro vulariter usitas arca possimus considero acies celo decerno.\n\nSubito inventore deorsum angulus casus timor ullus. Sperno cribro tres temporibus alioqui. Arbustum attollo iusto adulatio aro benigne sui tabella solio ustilo.",
  "price": 1064500,
  "currency": "USD",
  "bedrooms": 0,
  "bathrooms": 0,
  "squareFeet": 950058,
  "address": "408 Roselyn Islands",
  "city": "Nathenstad",
  "region": "Nebraska",
  "countryAlpha2": "KE",
  "latitude": 38.103751,
  "longitude": -103.165852,
  "status": "active",
  "listedAt": "2025-08-28T04:33:23.905Z",
  "createdAt": "2025-08-27T13:44:34.445Z",
  "updatedAt": "2026-04-15T15:54:34.128Z"
}