showings / #142
- listingId
- Apartment in Terrenceburgh · Terrenceburgh
- prospectUserId
- 111
- scheduledAt
- status
- no_show
- notes
- Cruciamentum terreo attero officiis deleniti aro.
- createdAt
Component variants
Medium
#142
#142
Small
showings/142 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/142" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/142"
);
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/142"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/142"
)
showing = res.json() {
"id": 142,
"listingId": 54,
"prospectUserId": 111,
"scheduledAt": "2026-01-15T00:32:25.204Z",
"status": "no_show",
"notes": "Cruciamentum terreo attero officiis deleniti aro.",
"createdAt": "2026-01-08T10:00:13.889Z"
}