showings #422
- listingId
- Townhouse in Fond du Lac · Fond du Lac
- prospectUserId
-
Ludwig Stiedemann @ludwig_stiedemann
- scheduledAt
- status
- completed
- notes
- Ventus conservo accusantium defluo damnatio universe.
- createdAt
Overview
showings / #422
#422
#422
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/422" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/422" ); 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/422"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/422"
)
showing = res.json() Response
{
"id": 422,
"listingId": 158,
"prospectUserId": 132,
"scheduledAt": "2026-05-09T12:17:46.228Z",
"status": "completed",
"notes": "Ventus conservo accusantium defluo damnatio universe.",
"createdAt": "2026-05-14T22:26:53.434Z"
}