showings / #157
- listingId
- Condo in Lake Vita · Lake Vita
- prospectUserId
- 94
- scheduledAt
- status
- completed
- notes
- Trepide reprehenderit turba sumo.
- createdAt
Component variants
Medium
#157
#157
Small
showings/157 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/157" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/157"
);
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/157"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/157"
)
showing = res.json() {
"id": 157,
"listingId": 58,
"prospectUserId": 94,
"scheduledAt": "2026-05-24T00:37:50.022Z",
"status": "completed",
"notes": "Trepide reprehenderit turba sumo.",
"createdAt": "2026-05-05T16:35:28.411Z"
}