showings / #77
- listingId
- Condo in South Rudolphville · South Rudolphville
- prospectUserId
- 56
- scheduledAt
- status
- completed
- notes
- Coniuratio ulciscor villa aiunt inflammatio.
- createdAt
Component variants
Medium
#77
#77
Small
showings/77 Related
curl -sS \
"https://example-data.com/api/v1/showings/77" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/77"
);
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/77"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/77"
)
showing = res.json() {
"id": 77,
"listingId": 27,
"prospectUserId": 56,
"scheduledAt": "2026-02-27T09:09:19.088Z",
"status": "completed",
"notes": "Coniuratio ulciscor villa aiunt inflammatio.",
"createdAt": "2026-01-31T01:09:11.824Z"
}