showings #467
- listingId
- Townhouse in Dooleytown · Dooleytown
- prospectUserId
-
Lazaro Herzog @lazaro_herzog
- scheduledAt
- status
- cancelled
- notes
- Varius voluptate uter viduo turba itaque arbustum adstringo.
- createdAt
Overview
showings / #467
#467
#467
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/467" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/467" ); 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/467"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/467"
)
showing = res.json() Response
{
"id": 467,
"listingId": 177,
"prospectUserId": 181,
"scheduledAt": "2025-12-07T23:09:44.402Z",
"status": "cancelled",
"notes": "Varius voluptate uter viduo turba itaque arbustum adstringo.",
"createdAt": "2025-11-25T04:11:44.624Z"
}