showings / #189
- listingId
- Apartment in Visalia · Visalia
- prospectUserId
- 141
- scheduledAt
- status
- no_show
- notes
- Vinco minus contra.
- createdAt
Component variants
Medium
#189
#189
Small
showings/189 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/189" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/189"
);
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/189"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/189"
)
showing = res.json() {
"id": 189,
"listingId": 69,
"prospectUserId": 141,
"scheduledAt": "2026-03-30T05:24:33.063Z",
"status": "no_show",
"notes": "Vinco minus contra.",
"createdAt": "2026-03-09T00:52:09.801Z"
}