showings / #171
- listingId
- House in West Lemuel · West Lemuel
- prospectUserId
- 72
- scheduledAt
- status
- cancelled
- notes
- Vere tui adipisci adiuvo tam admiratio.
- createdAt
Component variants
Medium
#171
#171
Small
showings/171 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/171" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/171"
);
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/171"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/171"
)
showing = res.json() {
"id": 171,
"listingId": 63,
"prospectUserId": 72,
"scheduledAt": "2025-11-25T12:21:02.176Z",
"status": "cancelled",
"notes": "Vere tui adipisci adiuvo tam admiratio.",
"createdAt": "2025-11-29T12:15:35.579Z"
}