showings / #183
- listingId
- House in Blandaburgh · Blandaburgh
- prospectUserId
- 90
- scheduledAt
- status
- completed
- notes
- Vester blandior theca viduo adeptio tego alter vita.
- createdAt
Component variants
Medium
#183
#183
Small
showings/183 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/183" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/183"
);
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/183"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/183"
)
showing = res.json() {
"id": 183,
"listingId": 67,
"prospectUserId": 90,
"scheduledAt": "2025-12-17T01:04:37.574Z",
"status": "completed",
"notes": "Vester blandior theca viduo adeptio tego alter vita.",
"createdAt": "2025-12-11T22:31:01.689Z"
}