showings / #200
- listingId
- Condo in West Jaquelineport · West Jaquelineport
- prospectUserId
- 157
- scheduledAt
- status
- scheduled
- notes
- Hic auxilium torqueo alius thema civitas.
- createdAt
Component variants
Medium
#200
#200
Small
showings/200 Related
curl -sS \
"https://example-data.com/api/v1/showings/200" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/200"
);
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/200"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/200"
)
showing = res.json() {
"id": 200,
"listingId": 75,
"prospectUserId": 157,
"scheduledAt": "2026-04-09T10:30:03.443Z",
"status": "scheduled",
"notes": "Hic auxilium torqueo alius thema civitas.",
"createdAt": "2026-03-23T12:31:09.801Z"
}