showings / #169
- listingId
- Townhouse in Jettburgh · Jettburgh
- prospectUserId
- 244
- scheduledAt
- status
- scheduled
- notes
- Conicio synagoga suffoco ago vehemens curatio tamdiu tyrannus torrens aegrus.
- createdAt
Component variants
Medium
#169
#169
Small
showings/169 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/169" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/169"
);
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/169"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/169"
)
showing = res.json() {
"id": 169,
"listingId": 62,
"prospectUserId": 244,
"scheduledAt": "2026-05-11T00:38:47.480Z",
"status": "scheduled",
"notes": "Conicio synagoga suffoco ago vehemens curatio tamdiu tyrannus torrens aegrus.",
"createdAt": "2026-05-10T21:49:50.298Z"
}