showings / #28
- listingId
- Townhouse in Rapid City · Rapid City
- prospectUserId
- 218
- scheduledAt
- status
- scheduled
- notes
- Civis demoror audentia arca adipiscor.
- createdAt
Component variants
Medium
#28
#28
Small
showings/28 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/28" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/28"
);
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/28"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/28"
)
showing = res.json() {
"id": 28,
"listingId": 8,
"prospectUserId": 218,
"scheduledAt": "2026-05-18T14:54:13.248Z",
"status": "scheduled",
"notes": "Civis demoror audentia arca adipiscor.",
"createdAt": "2026-04-29T06:25:34.785Z"
}