showings #72
- listingId
- House in Quitzoncester · Quitzoncester
- prospectUserId
-
Wilton Dietrich @wilton.dietrich23
- scheduledAt
- status
- cancelled
- notes
- Repellendus ceno curriculum.
- createdAt
Overview
showings / #72
#72
#72
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/72" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/72" ); 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/72"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/72"
)
showing = res.json() Response
{
"id": 72,
"listingId": 23,
"prospectUserId": 190,
"scheduledAt": "2026-03-11T13:28:44.780Z",
"status": "cancelled",
"notes": "Repellendus ceno curriculum.",
"createdAt": "2026-03-18T11:53:18.513Z"
}