showings / #237
- listingId
- Townhouse in Kuhlmanboro · Kuhlmanboro
- prospectUserId
- 87
- scheduledAt
- status
- scheduled
- notes
- Quidem defleo calamitas adulatio.
- createdAt
Component variants
Medium
#237
#237
Small
showings/237 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/237" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/237"
);
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/237"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/237"
)
showing = res.json() {
"id": 237,
"listingId": 89,
"prospectUserId": 87,
"scheduledAt": "2025-11-28T20:25:07.258Z",
"status": "scheduled",
"notes": "Quidem defleo calamitas adulatio.",
"createdAt": "2025-11-28T06:58:56.137Z"
}