showings / #234
- listingId
- Commercial Space in South Brandon · South Brandon
- prospectUserId
- 144
- scheduledAt
- status
- scheduled
- notes
- Arca agnosco beatus hic suspendo carus vir crur amoveo.
- createdAt
Component variants
Medium
#234
#234
Small
showings/234 Related
curl -sS \
"https://example-data.com/api/v1/showings/234" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/234"
);
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/234"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/234"
)
showing = res.json() {
"id": 234,
"listingId": 88,
"prospectUserId": 144,
"scheduledAt": "2026-04-03T20:43:10.869Z",
"status": "scheduled",
"notes": "Arca agnosco beatus hic suspendo carus vir crur amoveo.",
"createdAt": "2026-04-05T04:06:04.244Z"
}