showings / #117
- listingId
- House in West Janet · West Janet
- prospectUserId
- 101
- scheduledAt
- status
- completed
- notes
- Velut adamo est commodi.
- createdAt
Component variants
Medium
#117
#117
Small
showings/117 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/117" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/117"
);
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/117"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/117"
)
showing = res.json() {
"id": 117,
"listingId": 43,
"prospectUserId": 101,
"scheduledAt": "2025-10-11T15:52:26.232Z",
"status": "completed",
"notes": "Velut adamo est commodi.",
"createdAt": "2025-10-02T10:10:53.945Z"
}