showings / #124
- listingId
- House in Duluth · Duluth
- prospectUserId
- 198
- scheduledAt
- status
- completed
- notes
- Porro vito tergum sol votum vox urbs depopulo a thalassinus.
- createdAt
Component variants
Medium
#124
#124
Small
showings/124 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/124" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/124"
);
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/124"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/124"
)
showing = res.json() {
"id": 124,
"listingId": 46,
"prospectUserId": 198,
"scheduledAt": "2026-05-04T07:07:25.475Z",
"status": "completed",
"notes": "Porro vito tergum sol votum vox urbs depopulo a thalassinus.",
"createdAt": "2026-05-06T16:48:03.435Z"
}