showings #353
- listingId
- Condo in Tianafort · Tianafort
- prospectUserId
-
Karolann Legros @karolann_legros
- scheduledAt
- status
- completed
- notes
- Vicissitudo inflammatio angustus tristis cernuus.
- createdAt
Overview
showings / #353
#353
#353
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/353" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/353" ); 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/353"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/353"
)
showing = res.json() Response
{
"id": 353,
"listingId": 129,
"prospectUserId": 246,
"scheduledAt": "2026-03-17T02:31:53.445Z",
"status": "completed",
"notes": "Vicissitudo inflammatio angustus tristis cernuus.",
"createdAt": "2026-03-20T02:08:44.256Z"
}