showings / #156
- listingId
- Condo in Lake Vita · Lake Vita
- prospectUserId
- 205
- scheduledAt
- status
- cancelled
- notes
- Infit consectetur deludo tonsor testimonium.
- createdAt
Component variants
Medium
#156
#156
Small
showings/156 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/156" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/156"
);
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/156"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/156"
)
showing = res.json() {
"id": 156,
"listingId": 58,
"prospectUserId": 205,
"scheduledAt": "2026-05-06T13:33:08.962Z",
"status": "cancelled",
"notes": "Infit consectetur deludo tonsor testimonium.",
"createdAt": "2026-05-11T21:28:52.811Z"
}