example-data.com
Menu
Browse docs and collections

Overview

listings / #113

Condo in Grantburgh

condo · Grantburgh · $4,145,000

438 Goyette Spring

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 113,
  "agentUserId": 26,
  "propertyType": "condo",
  "title": "Condo in Grantburgh",
  "description": "Voluptatum votum vestigium animadverto venustas. Decor valeo adflicto libero adsidue. Pecus decipio demens surculus caveo.\n\nCreo vitiosus vado aeger aggero. Alias ambitus ventito corpus cura denuo administratio. Vivo debitis succedo attollo creator.",
  "price": 4145000,
  "currency": "USD",
  "bedrooms": 5,
  "bathrooms": 1,
  "squareFeet": 5555,
  "address": "438 Goyette Spring",
  "city": "Grantburgh",
  "region": "Oregon",
  "countryAlpha2": "TR",
  "latitude": -38.650203,
  "longitude": 38.590281,
  "status": "active",
  "listedAt": "2026-02-13T19:10:49.860Z",
  "createdAt": "2026-02-13T18:11:59.613Z",
  "updatedAt": "2026-04-07T11:30:43.899Z"
}