showings / #41
- listingId
- House in Lake Sanfordfurt · Lake Sanfordfurt
- prospectUserId
- 129
- scheduledAt
- status
- scheduled
- notes
- Cuppedia corporis theologus curto subnecto triumphus.
- createdAt
Component variants
Medium
#41
#41
Small
showings/41 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/41" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/41"
);
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/41"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/41"
)
showing = res.json() {
"id": 41,
"listingId": 13,
"prospectUserId": 129,
"scheduledAt": "2025-04-21T04:38:37.889Z",
"status": "scheduled",
"notes": "Cuppedia corporis theologus curto subnecto triumphus.",
"createdAt": "2025-04-19T17:19:48.514Z"
}