example-data.com
Menu
Browse docs and collections

Overview

listings / #178

Condo in Newport Beach

condo · Newport Beach · $142,100

21182 Gavin Parkway

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 178,
  "agentUserId": 235,
  "propertyType": "condo",
  "title": "Condo in Newport Beach",
  "description": "Caries tabesco molestiae sit qui aegrus. Infit una socius audio vacuus advenio statua supplanto sustineo amiculum. Usitas arguo cognatus.\n\nDecimus capitulus tamisium totus alveus tepesco traho facilis ter corrumpo. Tredecim agnitio id praesentium denego. Thesaurus taceo acervus vigilo beneficium contra dedico audeo tempore.",
  "price": 142100,
  "currency": "USD",
  "bedrooms": 2,
  "bathrooms": 3,
  "squareFeet": 4644,
  "address": "21182 Gavin Parkway",
  "city": "Newport Beach",
  "region": "Florida",
  "countryAlpha2": "AR",
  "latitude": 8.221769,
  "longitude": -53.051581,
  "status": "active",
  "listedAt": "2024-06-12T08:13:56.068Z",
  "createdAt": "2024-06-11T18:14:28.253Z",
  "updatedAt": "2025-09-06T22:01:53.260Z"
}