showings #443
- listingId
- House in Youngstown · Youngstown
- prospectUserId
-
Enos Hamill @enos_hamill
- scheduledAt
- status
- completed
- notes
- Sophismata utilis audentia pecco totam temptatio xiphias paens.
- createdAt
Overview
showings / #443
#443
#443
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/443" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/443" ); 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/443"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/443"
)
showing = res.json() Response
{
"id": 443,
"listingId": 165,
"prospectUserId": 65,
"scheduledAt": "2026-05-28T01:38:26.679Z",
"status": "completed",
"notes": "Sophismata utilis audentia pecco totam temptatio xiphias paens.",
"createdAt": "2026-04-29T06:25:47.316Z"
}