Condo in South Rudolphville
condo · South Rudolphville · $3,670,200
754 Vernice Park
Overview
listings / #27
condo · South Rudolphville · $3,670,200
754 Vernice Park
Request
curl example
curl -sS \ "https://example-data.com/api/v1/listings/27" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/listings/27" ); 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/27"
);
const listing = (await res.json()) as Listing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/listings/27"
)
listing = res.json() Response
{
"id": 27,
"agentUserId": 104,
"propertyType": "condo",
"title": "Condo in South Rudolphville",
"description": "Deinde cunae caveo rem suspendo turpis conqueror capillus. Veritas accommodo ars doloribus accendo stultus nihil aeternus. Crudelis architecto copia angulus ventosus.\n\nRepudiandae pecus vergo calcar apto venia decumbo. Patior corrumpo voluntarius excepturi approbo. Subseco vitiosus audeo adeptio una perspiciatis vulgaris ara.",
"price": 3670200,
"currency": "USD",
"bedrooms": 5,
"bathrooms": 3,
"squareFeet": 9657,
"address": "754 Vernice Park",
"city": "South Rudolphville",
"region": "Kansas",
"countryAlpha2": "PL",
"latitude": 5.428834,
"longitude": -2.918669,
"status": "pending",
"listedAt": "2024-06-04T16:35:58.108Z",
"createdAt": "2024-06-04T04:56:20.196Z",
"updatedAt": "2026-04-27T07:44:43.887Z"
}