Condo in Grantburgh
condo · Grantburgh · $4,145,000
438 Goyette Spring
listings / #113
condo · Grantburgh · $4,145,000
438 Goyette Spring
curl -sS \
"https://example-data.com/api/v1/listings/113" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/listings/113"
);
const listing = await res.json();import type { Listing } from "https://example-data.com/types/listings.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/listings/113"
);
const listing = (await res.json()) as Listing;import requests
res = requests.get(
"https://example-data.com/api/v1/listings/113"
)
listing = res.json() {
"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"
}