showings / #217
- listingId
- House in Fort Randi · Fort Randi
- prospectUserId
- 71
- scheduledAt
- status
- scheduled
- notes
- Bellicus tempus rerum currus cotidie uredo.
- createdAt
Component variants
Medium
#217
#217
Small
showings/217 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/217" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/217"
);
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/217"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/217"
)
showing = res.json() {
"id": 217,
"listingId": 82,
"prospectUserId": 71,
"scheduledAt": "2026-04-15T18:47:15.284Z",
"status": "scheduled",
"notes": "Bellicus tempus rerum currus cotidie uredo.",
"createdAt": "2026-03-31T06:22:36.723Z"
}