showings / #81
- listingId
- Apartment in Westminster · Westminster
- prospectUserId
- 122
- scheduledAt
- status
- no_show
- notes
- Calcar auditor studio contigo suffoco summa textor solutio comes.
- createdAt
Component variants
Medium
#81
#81
Small
showings/81 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/81" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/81"
);
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/81"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/81"
)
showing = res.json() {
"id": 81,
"listingId": 28,
"prospectUserId": 122,
"scheduledAt": "2025-12-07T12:54:39.568Z",
"status": "no_show",
"notes": "Calcar auditor studio contigo suffoco summa textor solutio comes.",
"createdAt": "2025-12-03T17:42:02.639Z"
}