showings / #17
- listingId
- Condo in Lake Willyport · Lake Willyport
- prospectUserId
- 90
- scheduledAt
- status
- completed
- notes
- Super velit crur adsidue.
- createdAt
Component variants
Medium
#17
#17
Small
showings/17 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/17" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/17"
);
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/17"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/17"
)
showing = res.json() {
"id": 17,
"listingId": 5,
"prospectUserId": 90,
"scheduledAt": "2026-03-16T13:33:44.237Z",
"status": "completed",
"notes": "Super velit crur adsidue.",
"createdAt": "2026-02-22T04:42:39.462Z"
}