showings #38
- listingId
- House in La Mirada · La Mirada
- prospectUserId
-
Cyril Frami @cyril_frami88
- scheduledAt
- status
- cancelled
- notes
- Socius cogito theatrum sapiente fugiat vitae alo.
- createdAt
Overview
showings / #38
#38
#38
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/38" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/38" ); 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/38"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/38"
)
showing = res.json() Response
{
"id": 38,
"listingId": 12,
"prospectUserId": 182,
"scheduledAt": "2025-12-22T00:55:24.820Z",
"status": "cancelled",
"notes": "Socius cogito theatrum sapiente fugiat vitae alo.",
"createdAt": "2025-12-03T21:13:33.434Z"
}