showings / #45
- listingId
- House in Port Gina · Port Gina
- prospectUserId
- 43
- scheduledAt
- status
- completed
- notes
- Atrocitas totus colo bonus placeat torqueo celebrer xiphias sapiente absens.
- createdAt
Component variants
Medium
#45
#45
Small
showings/45 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/45" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/45"
);
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/45"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/45"
)
showing = res.json() {
"id": 45,
"listingId": 14,
"prospectUserId": 43,
"scheduledAt": "2025-10-13T14:25:49.344Z",
"status": "completed",
"notes": "Atrocitas totus colo bonus placeat torqueo celebrer xiphias sapiente absens.",
"createdAt": "2025-09-30T16:40:38.527Z"
}