example-data.com
Menu
Browse docs and collections

Overview

listings / #86

Apartment in Fort Rhianna

apartment · Fort Rhianna · $3,080,400

5727 Randy Stream

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 86,
  "agentUserId": 62,
  "propertyType": "apartment",
  "title": "Apartment in Fort Rhianna",
  "description": "Vaco ustilo cogito. Tergum aveho delego. Argumentum argumentum absconditus socius charisma tum adinventitias comptus claustrum.\n\nConcido angustus abbas utpote. Adeptio caute videlicet tabula vomica vulnero. Damnatio appello provident debeo argumentum.\n\nVesper voluptatum supellex delego. Occaecati vespillo usitas vergo blandior adicio. Surculus truculenter conscendo.",
  "price": 3080400,
  "currency": "USD",
  "bedrooms": 1,
  "bathrooms": 0.5,
  "squareFeet": 4396,
  "address": "5727 Randy Stream",
  "city": "Fort Rhianna",
  "region": "Illinois",
  "countryAlpha2": "ET",
  "latitude": 21.953542,
  "longitude": 93.312963,
  "status": "sold",
  "listedAt": "2025-05-29T23:25:06.301Z",
  "createdAt": "2025-05-29T04:57:47.952Z",
  "updatedAt": "2025-11-05T12:55:08.511Z"
}