showings #337
- listingId
- Land in Conncester · Conncester
- prospectUserId
-
Oma Franecki-Johnson @oma.franecki-johnson
- scheduledAt
- status
- completed
- notes
- Vacuus subnecto demens quidem convoco ceno apostolus antiquus corrupti curtus.
- createdAt
Overview
showings / #337
#337
#337
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/337" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/337" ); 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/337"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/337"
)
showing = res.json() Response
{
"id": 337,
"listingId": 123,
"prospectUserId": 242,
"scheduledAt": "2026-01-01T10:50:09.779Z",
"status": "completed",
"notes": "Vacuus subnecto demens quidem convoco ceno apostolus antiquus corrupti curtus.",
"createdAt": "2025-12-25T07:26:24.803Z"
}