Land in Fort King
land · Fort King · $2,399,500
79397 Cristopher Key
Overview
listings / #36
land · Fort King · $2,399,500
79397 Cristopher Key
Request
curl example
curl -sS \ "https://example-data.com/api/v1/listings/36" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/listings/36" ); 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/36"
);
const listing = (await res.json()) as Listing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/listings/36"
)
listing = res.json() Response
{
"id": 36,
"agentUserId": 168,
"propertyType": "land",
"title": "Land in Fort King",
"description": "Sophismata arx valens comptus similique suffoco complectus aveho adinventitias. Tubineus una censura voluptatum exercitationem vox comminor aufero. Subiungo nobis eveniet temeritas adversus defungo apparatus valeo adicio denuo.\n\nSequi caelum strues tego corrupti bene corpus comes. Uredo comparo agnosco ea caute. Tantillus subseco color sed surculus appello.\n\nDamno decor quas. Appello charisma alo adsuesco. Benigne curso ascit maxime delibero artificiose acceptus.\n\nValde voluptatibus quis atque tenus illum. Tersus amaritudo vel terror venio totus sum. Deficio vereor adamo arma quae a adfectus delicate.",
"price": 2399500,
"currency": "USD",
"bedrooms": 0,
"bathrooms": 0,
"squareFeet": 955141,
"address": "79397 Cristopher Key",
"city": "Fort King",
"region": "South Dakota",
"countryAlpha2": "CN",
"latitude": 58.674673,
"longitude": 23.989973,
"status": "active",
"listedAt": "2025-05-08T19:26:04.628Z",
"createdAt": "2025-05-08T18:37:19.707Z",
"updatedAt": "2026-02-07T13:18:06.914Z"
}