showings / #27
- listingId
- Townhouse in Rapid City · Rapid City
- prospectUserId
- 95
- scheduledAt
- status
- scheduled
- notes
- Sulum ago adulescens agnitio curiositas talus vester adulatio.
- createdAt
Component variants
Medium
#27
#27
Small
showings/27 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/27" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/27"
);
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/27"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/27"
)
showing = res.json() {
"id": 27,
"listingId": 8,
"prospectUserId": 95,
"scheduledAt": "2026-04-24T02:31:17.000Z",
"status": "scheduled",
"notes": "Sulum ago adulescens agnitio curiositas talus vester adulatio.",
"createdAt": "2026-04-25T07:37:47.285Z"
}