showings / #71
- listingId
- House in Quitzoncester · Quitzoncester
- prospectUserId
- 10
- scheduledAt
- status
- scheduled
- notes
- Iste ambitus perspiciatis adamo.
- createdAt
Component variants
Medium
#71
#71
Small
showings/71 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/71" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/71"
);
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/71"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/71"
)
showing = res.json() {
"id": 71,
"listingId": 23,
"prospectUserId": 10,
"scheduledAt": "2026-05-18T08:48:18.138Z",
"status": "scheduled",
"notes": "Iste ambitus perspiciatis adamo.",
"createdAt": "2026-05-03T18:36:21.656Z"
}