showings / #9
- listingId
- Condo in Homestead · Homestead
- prospectUserId
- 85
- scheduledAt
- status
- cancelled
- notes
- Tamen sono cras alo deleo acquiro credo totus ut crepusculum.
- createdAt
Component variants
Medium
#9
#9
Small
showings/9 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/9" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/9"
);
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/9"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/9"
)
showing = res.json() {
"id": 9,
"listingId": 3,
"prospectUserId": 85,
"scheduledAt": "2026-04-12T14:53:48.916Z",
"status": "cancelled",
"notes": "Tamen sono cras alo deleo acquiro credo totus ut crepusculum.",
"createdAt": "2026-04-01T09:21:53.661Z"
}