showings / #147
- listingId
- House in Lake Guillermo · Lake Guillermo
- prospectUserId
- 238
- scheduledAt
- status
- completed
- notes
- Sunt pectus vorago.
- createdAt
Component variants
Medium
#147
#147
Small
showings/147 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/147" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/147"
);
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/147"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/147"
)
showing = res.json() {
"id": 147,
"listingId": 55,
"prospectUserId": 238,
"scheduledAt": "2026-03-25T16:56:35.974Z",
"status": "completed",
"notes": "Sunt pectus vorago.",
"createdAt": "2026-03-31T10:06:10.207Z"
}