showings #198
- listingId
- Townhouse in Lake Cheyenne · Lake Cheyenne
- prospectUserId
-
Elva Roberts @elva.roberts48
- scheduledAt
- status
- completed
- notes
- Acquiro eveniet sollicito adfectus absens voluptas tepesco inventore temeritas.
- createdAt
Overview
showings / #198
#198
#198
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/198" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/198" ); 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/198"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/198"
)
showing = res.json() Response
{
"id": 198,
"listingId": 74,
"prospectUserId": 107,
"scheduledAt": "2026-06-11T04:39:00.090Z",
"status": "completed",
"notes": "Acquiro eveniet sollicito adfectus absens voluptas tepesco inventore temeritas.",
"createdAt": "2026-05-19T15:28:40.796Z"
}