showings #94
- listingId
- House in Perris · Perris
- prospectUserId
-
Marilou Douglas @marilou.douglas
- scheduledAt
- status
- completed
- notes
- Tui aliquam vehemens adicio.
- createdAt
Overview
showings / #94
#94
#94
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/94" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/94" ); 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/94"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/94"
)
showing = res.json() Response
{
"id": 94,
"listingId": 34,
"prospectUserId": 78,
"scheduledAt": "2025-11-10T08:29:52.969Z",
"status": "completed",
"notes": "Tui aliquam vehemens adicio.",
"createdAt": "2025-10-30T21:19:07.758Z"
}