example-data.com
Menu
Browse docs and collections

Overview

listings / #166

Apartment in Fort Javonte

apartment · Fort Javonte · $1,854,400

69777 Ferry Port

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 166,
  "agentUserId": 216,
  "propertyType": "apartment",
  "title": "Apartment in Fort Javonte",
  "description": "Calamitas depulso celo vulnero utpote tristis arcesso. Vel abduco accedo cum turpis solitudo contra. Cavus patrocinor sperno caecus tenax minima pecco audax textor.\n\nVirga arbor caute. Ago congregatio tres adhaero amor. Architecto aliquam fugiat ex vetus corrumpo necessitatibus ab.",
  "price": 1854400,
  "currency": "USD",
  "bedrooms": 2,
  "bathrooms": 3.5,
  "squareFeet": 5936,
  "address": "69777 Ferry Port",
  "city": "Fort Javonte",
  "region": "Texas",
  "countryAlpha2": "SA",
  "latitude": -15.662215,
  "longitude": -6.903093,
  "status": "active",
  "listedAt": "2024-07-14T06:48:44.209Z",
  "createdAt": "2024-07-13T23:22:11.866Z",
  "updatedAt": "2025-03-23T01:15:40.784Z"
}