showings / #56
- listingId
- House in Tyshawnland · Tyshawnland
- prospectUserId
- 198
- scheduledAt
- status
- completed
- notes
- Bibo absens ex credo carbo patior.
- createdAt
Component variants
Medium
#56
#56
Small
showings/56 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/56" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/56"
);
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/56"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/56"
)
showing = res.json() {
"id": 56,
"listingId": 18,
"prospectUserId": 198,
"scheduledAt": "2026-02-12T05:17:40.460Z",
"status": "completed",
"notes": "Bibo absens ex credo carbo patior.",
"createdAt": "2026-02-08T07:22:24.222Z"
}