showings / #107
- listingId
- Townhouse in Irvingborough · Irvingborough
- prospectUserId
- 201
- scheduledAt
- status
- scheduled
- notes
- Tui tripudio virgo.
- createdAt
Component variants
Medium
#107
#107
Small
showings/107 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/107" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/107"
);
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/107"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/107"
)
showing = res.json() {
"id": 107,
"listingId": 39,
"prospectUserId": 201,
"scheduledAt": "2025-12-21T23:19:03.989Z",
"status": "scheduled",
"notes": "Tui tripudio virgo.",
"createdAt": "2025-12-19T08:31:33.360Z"
}