showings / #44
- listingId
- House in Port Gina · Port Gina
- prospectUserId
- 84
- scheduledAt
- status
- cancelled
- notes
- Colo molestiae supra exercitationem conitor cena magnam.
- createdAt
Component variants
Medium
#44
#44
Small
showings/44 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/44" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/44"
);
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/44"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/44"
)
showing = res.json() {
"id": 44,
"listingId": 14,
"prospectUserId": 84,
"scheduledAt": "2025-09-27T07:11:57.646Z",
"status": "cancelled",
"notes": "Colo molestiae supra exercitationem conitor cena magnam.",
"createdAt": "2025-10-03T11:00:33.726Z"
}