showings / #90
- listingId
- Apartment in Gloverstad · Gloverstad
- prospectUserId
- 138
- scheduledAt
- status
- no_show
- notes
- Aetas tam vehemens soluta derideo demitto coaegresco.
- createdAt
Component variants
Medium
#90
#90
Small
showings/90 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/90" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/90"
);
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/90"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/90"
)
showing = res.json() {
"id": 90,
"listingId": 31,
"prospectUserId": 138,
"scheduledAt": "2026-06-20T01:46:33.393Z",
"status": "no_show",
"notes": "Aetas tam vehemens soluta derideo demitto coaegresco.",
"createdAt": "2026-05-21T12:45:18.798Z"
}