showings / #59
- listingId
- Land in Gerlachshire · Gerlachshire
- prospectUserId
- 193
- scheduledAt
- status
- completed
- notes
- Eveniet commemoro avarus uxor canonicus cinis auditor culpo victoria.
- createdAt
Component variants
Medium
#59
#59
Small
showings/59 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/59" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/59"
);
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/59"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/59"
)
showing = res.json() {
"id": 59,
"listingId": 19,
"prospectUserId": 193,
"scheduledAt": "2026-06-01T21:09:32.430Z",
"status": "completed",
"notes": "Eveniet commemoro avarus uxor canonicus cinis auditor culpo victoria.",
"createdAt": "2026-05-13T22:59:31.173Z"
}