showings / #94
- listingId
- House in Perris · Perris
- prospectUserId
- 78
- scheduledAt
- status
- completed
- notes
- Tui aliquam vehemens adicio.
- createdAt
Component variants
Medium
#94
#94
Small
showings/94 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/94" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/94"
);
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/94"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/94"
)
showing = res.json() {
"id": 94,
"listingId": 34,
"prospectUserId": 78,
"scheduledAt": "2025-11-10T08:29:52.969Z",
"status": "completed",
"notes": "Tui aliquam vehemens adicio.",
"createdAt": "2025-10-30T21:19:07.758Z"
}