showings #476
- listingId
- Townhouse in Demarcusborough · Demarcusborough
- prospectUserId
-
Matt Kuhic @matt_kuhic57
- scheduledAt
- status
- completed
- notes
- Delectatio vorax cribro virgo.
- createdAt
Overview
showings / #476
#476
#476
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/476" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/476" ); 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/476"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/476"
)
showing = res.json() Response
{
"id": 476,
"listingId": 180,
"prospectUserId": 226,
"scheduledAt": "2026-04-10T20:57:31.969Z",
"status": "completed",
"notes": "Delectatio vorax cribro virgo.",
"createdAt": "2026-03-29T17:27:26.819Z"
}