House in Lake Guillermo
house · Lake Guillermo · $4,123,100
341 Eloisa Points
Overview
listings / #55
house · Lake Guillermo · $4,123,100
341 Eloisa Points
Request
curl example
curl -sS \ "https://example-data.com/api/v1/listings/55" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/listings/55" ); 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/55"
);
const listing = (await res.json()) as Listing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/listings/55"
)
listing = res.json() Response
{
"id": 55,
"agentUserId": 217,
"propertyType": "house",
"title": "House in Lake Guillermo",
"description": "Surculus adinventitias maiores caterva caute corporis. Qui voro voveo est. Capio tenuis decens debilito.\n\nAdulescens agnosco vetus ars avaritia vulpes auctus tametsi. Trucido caelum tremo sollicito. Esse caelestis dolorum tergum crastinus.",
"price": 4123100,
"currency": "USD",
"bedrooms": 4,
"bathrooms": 4.5,
"squareFeet": 1336,
"address": "341 Eloisa Points",
"city": "Lake Guillermo",
"region": "Vermont",
"countryAlpha2": "SA",
"latitude": 59.315539,
"longitude": -137.589565,
"status": "active",
"listedAt": "2026-01-08T20:56:31.069Z",
"createdAt": "2026-01-08T09:27:32.187Z",
"updatedAt": "2026-01-31T19:53:28.977Z"
}