showings #183
- listingId
- House in Blandaburgh · Blandaburgh
- prospectUserId
-
Myrl Pollich @myrl.pollich
- scheduledAt
- status
- completed
- notes
- Vester blandior theca viduo adeptio tego alter vita.
- createdAt
Overview
showings / #183
#183
#183
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/183" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/183" ); 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/183"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/183"
)
showing = res.json() Response
{
"id": 183,
"listingId": 67,
"prospectUserId": 90,
"scheduledAt": "2025-12-17T01:04:37.574Z",
"status": "completed",
"notes": "Vester blandior theca viduo adeptio tego alter vita.",
"createdAt": "2025-12-11T22:31:01.689Z"
}