showings / #14
- listingId
- Condo in Lake Willyport · Lake Willyport
- prospectUserId
- 239
- scheduledAt
- status
- cancelled
- notes
- Crinis tenuis audeo vomito defendo aduro absens sortitus compello.
- createdAt
Component variants
Medium
#14
#14
Small
showings/14 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/14" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/14"
);
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/14"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/14"
)
showing = res.json() {
"id": 14,
"listingId": 5,
"prospectUserId": 239,
"scheduledAt": "2025-11-05T10:25:45.204Z",
"status": "cancelled",
"notes": "Crinis tenuis audeo vomito defendo aduro absens sortitus compello.",
"createdAt": "2025-10-25T01:31:21.116Z"
}