showings / #97
- listingId
- House in Perris · Perris
- prospectUserId
- 20
- scheduledAt
- status
- no_show
- notes
- Arca calco cervus error vergo ago.
- createdAt
Component variants
Medium
#97
#97
Small
showings/97 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/97" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/97"
);
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/97"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/97"
)
showing = res.json() {
"id": 97,
"listingId": 34,
"prospectUserId": 20,
"scheduledAt": "2026-05-13T18:43:24.691Z",
"status": "no_show",
"notes": "Arca calco cervus error vergo ago.",
"createdAt": "2026-05-06T22:35:39.375Z"
}