example-data.com
Menu
Browse docs and collections

Overview

listings / #146

Apartment in Katlynnhaven

apartment · Katlynnhaven · $1,108,400

82130 Crona Hollow

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 146,
  "agentUserId": 87,
  "propertyType": "apartment",
  "title": "Apartment in Katlynnhaven",
  "description": "Supellex laudantium ipsum cubitum terga tepesco carmen. Virgo copiose verbum copiose acer contego voveo derideo commemoro. Ubi autus amo curto dolorum cotidie aestivus conservo.\n\nSpero voluptatibus cavus atque nihil crinis barba clamo torrens depopulo. Totam thema cicuta veritas vivo voluntarius ager. Auditor sufficio cito tracto provident adfero cunctatio.",
  "price": 1108400,
  "currency": "USD",
  "bedrooms": 0,
  "bathrooms": 4.5,
  "squareFeet": 2258,
  "address": "82130 Crona Hollow",
  "city": "Katlynnhaven",
  "region": "North Dakota",
  "countryAlpha2": "PK",
  "latitude": -22.868953,
  "longitude": -167.991881,
  "status": "pending",
  "listedAt": "2026-02-10T00:15:02.476Z",
  "createdAt": "2026-02-09T02:33:06.637Z",
  "updatedAt": "2026-03-18T13:51:39.318Z"
}