showings / #57
- listingId
- House in Tyshawnland · Tyshawnland
- prospectUserId
- 225
- scheduledAt
- status
- completed
- notes
- Virgo celer angelus.
- createdAt
Component variants
Medium
#57
#57
Small
showings/57 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/57" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/57"
);
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/57"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/57"
)
showing = res.json() {
"id": 57,
"listingId": 18,
"prospectUserId": 225,
"scheduledAt": "2026-05-04T06:31:17.148Z",
"status": "completed",
"notes": "Virgo celer angelus.",
"createdAt": "2026-04-17T15:16:07.001Z"
}