showings #237
- listingId
- Townhouse in Kuhlmanboro · Kuhlmanboro
- prospectUserId
-
Michaela Feeney @michaela_feeney46
- scheduledAt
- status
- scheduled
- notes
- Quidem defleo calamitas adulatio.
- createdAt
Overview
showings / #237
#237
#237
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/237" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/237" ); const showing = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/showings.d.ts https://example-data.com/types/showings.d.ts
import type { Showing } from "./types/showings";
const res = await fetch(
"https://example-data.com/api/v1/showings/237"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/237"
)
showing = res.json() Response
{
"id": 237,
"listingId": 89,
"prospectUserId": 87,
"scheduledAt": "2025-11-28T20:25:07.258Z",
"status": "scheduled",
"notes": "Quidem defleo calamitas adulatio.",
"createdAt": "2025-11-28T06:58:56.137Z"
}