showings / #76
- listingId
- Land in Nyasiaberg · Nyasiaberg
- prospectUserId
- 127
- scheduledAt
- status
- scheduled
- notes
- Cattus canis peior debilito delectatio coma umbra degenero.
- createdAt
Component variants
Medium
#76
#76
Small
showings/76 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/76" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/76"
);
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/76"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/76"
)
showing = res.json() {
"id": 76,
"listingId": 26,
"prospectUserId": 127,
"scheduledAt": "2025-08-06T03:57:53.284Z",
"status": "scheduled",
"notes": "Cattus canis peior debilito delectatio coma umbra degenero.",
"createdAt": "2025-07-24T14:53:35.497Z"
}