showings #26
- listingId
- Townhouse in Rapid City · Rapid City
- prospectUserId
-
Enos Hamill @enos_hamill
- scheduledAt
- status
- completed
- notes
- Coadunatio venustas delego cupressus arguo capio.
- createdAt
Overview
showings / #26
#26
#26
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/26" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/26" ); 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/26"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/26"
)
showing = res.json() Response
{
"id": 26,
"listingId": 8,
"prospectUserId": 65,
"scheduledAt": "2026-04-29T18:13:35.693Z",
"status": "completed",
"notes": "Coadunatio venustas delego cupressus arguo capio.",
"createdAt": "2026-04-12T05:33:50.211Z"
}