showings / #158
- listingId
- Condo in Lake Vita · Lake Vita
- prospectUserId
- 112
- scheduledAt
- status
- scheduled
- notes
- Caput deorsum et spectaculum.
- createdAt
Component variants
Medium
#158
#158
Small
showings/158 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/158" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/158"
);
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/158"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/158"
)
showing = res.json() {
"id": 158,
"listingId": 58,
"prospectUserId": 112,
"scheduledAt": "2026-05-29T03:00:59.788Z",
"status": "scheduled",
"notes": "Caput deorsum et spectaculum.",
"createdAt": "2026-05-18T17:40:35.192Z"
}