showings / #199
- listingId
- Townhouse in Lake Cheyenne · Lake Cheyenne
- prospectUserId
- 41
- scheduledAt
- status
- scheduled
- notes
- Beatae sodalitas derelinquo.
- createdAt
Component variants
Medium
#199
#199
Small
showings/199 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/199" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/199"
);
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/199"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/199"
)
showing = res.json() {
"id": 199,
"listingId": 74,
"prospectUserId": 41,
"scheduledAt": "2026-05-19T14:36:16.344Z",
"status": "scheduled",
"notes": "Beatae sodalitas derelinquo.",
"createdAt": "2026-05-21T21:13:13.468Z"
}