showings / #54
- listingId
- House in Tyshawnland · Tyshawnland
- prospectUserId
- 175
- scheduledAt
- status
- completed
- notes
- Absorbeo careo ver antepono terra soluta.
- createdAt
Component variants
Medium
#54
#54
Small
showings/54 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/54" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/54"
);
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/54"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/54"
)
showing = res.json() {
"id": 54,
"listingId": 18,
"prospectUserId": 175,
"scheduledAt": "2026-05-25T14:56:54.115Z",
"status": "completed",
"notes": "Absorbeo careo ver antepono terra soluta.",
"createdAt": "2026-05-18T22:01:23.364Z"
}