showings #106
- listingId
- Townhouse in Irvingborough · Irvingborough
- prospectUserId
-
Sheridan Turcotte @sheridan.turcotte
- scheduledAt
- status
- completed
- notes
- Cresco nisi ars communis facilis neque.
- createdAt
Overview
showings / #106
#106
#106
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/106" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/106" ); 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/106"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/106"
)
showing = res.json() Response
{
"id": 106,
"listingId": 39,
"prospectUserId": 153,
"scheduledAt": "2026-04-28T09:22:31.459Z",
"status": "completed",
"notes": "Cresco nisi ars communis facilis neque.",
"createdAt": "2026-04-30T04:08:29.608Z"
}