example-data.com
Menu
Browse docs and collections

Overview

listings / #90

House in Romaguerachester

house · Romaguerachester · $3,426,900

94073 Zena Branch

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 90,
  "agentUserId": 198,
  "propertyType": "house",
  "title": "House in Romaguerachester",
  "description": "Ventito quos tollo. Caterva aegrotatio corrumpo catena absum torrens ultra cohors uxor curriculum. Pauper vita voluptate ocer tollo.\n\nCurrus canonicus conspergo volaticus urbs. Tubineus tumultus totidem crux neque. Vorago amplexus auxilium corrupti quaerat pectus adulatio creta.",
  "price": 3426900,
  "currency": "USD",
  "bedrooms": 1,
  "bathrooms": 3.5,
  "squareFeet": 8701,
  "address": "94073 Zena Branch",
  "city": "Romaguerachester",
  "region": "New Mexico",
  "countryAlpha2": "EG",
  "latitude": 41.70474,
  "longitude": 133.22111,
  "status": "active",
  "listedAt": "2025-08-17T16:03:19.207Z",
  "createdAt": "2025-08-16T19:57:11.926Z",
  "updatedAt": "2026-01-06T02:12:42.144Z"
}