showings / #129
- listingId
- Townhouse in Owenmouth · Owenmouth
- prospectUserId
- 122
- scheduledAt
- status
- cancelled
- notes
- Viduo cupiditas demergo appono caecus decimus cursim.
- createdAt
Component variants
Medium
#129
#129
Small
showings/129 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/129" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/129"
);
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/129"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/129"
)
showing = res.json() {
"id": 129,
"listingId": 47,
"prospectUserId": 122,
"scheduledAt": "2025-09-05T17:22:59.222Z",
"status": "cancelled",
"notes": "Viduo cupiditas demergo appono caecus decimus cursim.",
"createdAt": "2025-08-31T00:49:59.255Z"
}