showings / #220
- listingId
- House in Philipside · Philipside
- prospectUserId
- 109
- scheduledAt
- status
- no_show
- notes
- Basium reprehenderit defetiscor temperantia ambitus tristis aut mollitia.
- createdAt
Component variants
Medium
#220
#220
Small
showings/220 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/220" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/220"
);
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/220"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/220"
)
showing = res.json() {
"id": 220,
"listingId": 83,
"prospectUserId": 109,
"scheduledAt": "2026-06-07T13:26:36.349Z",
"status": "no_show",
"notes": "Basium reprehenderit defetiscor temperantia ambitus tristis aut mollitia.",
"createdAt": "2026-05-15T21:35:26.890Z"
}