showings / #11
- listingId
- Land in New Seamus · New Seamus
- prospectUserId
- 155
- scheduledAt
- status
- scheduled
- notes
- Benevolentia tendo vilis colligo tredecim avarus aestivus censura tubineus.
- createdAt
Component variants
Medium
#11
#11
Small
showings/11 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/11" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/11"
);
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/11"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/11"
)
showing = res.json() {
"id": 11,
"listingId": 4,
"prospectUserId": 155,
"scheduledAt": "2026-03-31T02:43:44.694Z",
"status": "scheduled",
"notes": "Benevolentia tendo vilis colligo tredecim avarus aestivus censura tubineus.",
"createdAt": "2026-03-13T09:56:57.384Z"
}