Land in Nyasiaberg
land · Nyasiaberg · $2,974,600
5828 The Oval
Overview
listings / #26
land · Nyasiaberg · $2,974,600
5828 The Oval
Request
curl example
curl -sS \ "https://example-data.com/api/v1/listings/26" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/listings/26" ); 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/26"
);
const listing = (await res.json()) as Listing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/listings/26"
)
listing = res.json() Response
{
"id": 26,
"agentUserId": 104,
"propertyType": "land",
"title": "Land in Nyasiaberg",
"description": "Concedo blandior tutis libero patrocinor voluntarius aestus curvo una. Aggredior admitto vulpes decumbo vere validus titulus. Validus bardus appositus voluptatibus torrens ea aliquam modi.\n\nAb aveho tres. Bibo coruscus contigo catena celo attero tergiversatio corrigo venio suus. Ver caveo comptus conforto acervus.",
"price": 2974600,
"currency": "USD",
"bedrooms": 0,
"bathrooms": 0,
"squareFeet": 627555,
"address": "5828 The Oval",
"city": "Nyasiaberg",
"region": "Illinois",
"countryAlpha2": "KR",
"latitude": -19.114802,
"longitude": 160.897279,
"status": "active",
"listedAt": "2025-05-24T03:09:29.553Z",
"createdAt": "2025-05-23T03:16:31.274Z",
"updatedAt": "2025-05-24T05:02:01.446Z"
}