showings / #52
- listingId
- House in Fort Rogers · Fort Rogers
- prospectUserId
- 228
- scheduledAt
- status
- no_show
- notes
- Subito causa velut labore sollicito carbo maiores cras tamdiu supplanto.
- createdAt
Component variants
Medium
#52
#52
Small
showings/52 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/52" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/52"
);
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/52"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/52"
)
showing = res.json() {
"id": 52,
"listingId": 17,
"prospectUserId": 228,
"scheduledAt": "2026-05-14T10:39:09.825Z",
"status": "no_show",
"notes": "Subito causa velut labore sollicito carbo maiores cras tamdiu supplanto.",
"createdAt": "2026-05-19T20:05:40.287Z"
}