showings / #8
- listingId
- House in New Otiliatown · New Otiliatown
- prospectUserId
- 250
- scheduledAt
- status
- cancelled
- notes
- Credo itaque cedo trepide quod arbitro canto aliquid cupiditas suffoco.
- createdAt
Component variants
Medium
#8
#8
Small
showings/8 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/8" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/8"
);
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/8"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/8"
)
showing = res.json() {
"id": 8,
"listingId": 2,
"prospectUserId": 250,
"scheduledAt": "2026-05-06T04:18:22.887Z",
"status": "cancelled",
"notes": "Credo itaque cedo trepide quod arbitro canto aliquid cupiditas suffoco.",
"createdAt": "2026-04-21T14:05:56.014Z"
}