showings / #164
- listingId
- Townhouse in Fort Hunter · Fort Hunter
- prospectUserId
- 119
- scheduledAt
- status
- scheduled
- notes
- Theca aro creber desolo suasoria.
- createdAt
Component variants
Medium
#164
#164
Small
showings/164 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/164" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/164"
);
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/164"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/164"
)
showing = res.json() {
"id": 164,
"listingId": 60,
"prospectUserId": 119,
"scheduledAt": "2025-12-11T02:53:14.699Z",
"status": "scheduled",
"notes": "Theca aro creber desolo suasoria.",
"createdAt": "2025-11-17T19:43:46.618Z"
}