showings / #198
- listingId
- Townhouse in Lake Cheyenne · Lake Cheyenne
- prospectUserId
- 107
- scheduledAt
- status
- completed
- notes
- Acquiro eveniet sollicito adfectus absens voluptas tepesco inventore temeritas.
- createdAt
Component variants
Medium
#198
#198
Small
showings/198 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/198" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/198"
);
const showing = await res.json();import type { Showing } from "https://example-data.com/types/showings.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/showings/198"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/198"
)
showing = res.json() {
"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"
}