showings / #125
- listingId
- House in Duluth · Duluth
- prospectUserId
- 6
- scheduledAt
- status
- cancelled
- notes
- Acies derideo sed.
- createdAt
Component variants
Medium
#125
#125
Small
showings/125 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/125" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/125"
);
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/125"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/125"
)
showing = res.json() {
"id": 125,
"listingId": 46,
"prospectUserId": 6,
"scheduledAt": "2026-06-03T02:42:56.690Z",
"status": "cancelled",
"notes": "Acies derideo sed.",
"createdAt": "2026-05-06T06:23:52.107Z"
}