showings / #16
- listingId
- Condo in Lake Willyport · Lake Willyport
- prospectUserId
- 184
- scheduledAt
- status
- completed
- notes
- Caste venia somnus communis xiphias collum quis.
- createdAt
Component variants
Medium
#16
#16
Small
showings/16 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/16" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/16"
);
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/16"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/16"
)
showing = res.json() {
"id": 16,
"listingId": 5,
"prospectUserId": 184,
"scheduledAt": "2026-02-09T04:48:11.871Z",
"status": "completed",
"notes": "Caste venia somnus communis xiphias collum quis.",
"createdAt": "2026-02-12T11:33:05.882Z"
}