showings #460
- listingId
- Condo in Buckridgehaven · Buckridgehaven
- prospectUserId
-
Clyde Bernier-Gleason @clyde_bernier-gleason6
- scheduledAt
- status
- completed
- notes
- Hic cado adeptio conicio.
- createdAt
Overview
showings / #460
#460
#460
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/460" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/460" ); 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/460"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/460"
)
showing = res.json() Response
{
"id": 460,
"listingId": 174,
"prospectUserId": 143,
"scheduledAt": "2026-03-09T18:50:22.238Z",
"status": "completed",
"notes": "Hic cado adeptio conicio.",
"createdAt": "2026-03-14T15:49:13.837Z"
}