showings / #141
- listingId
- Apartment in Terrenceburgh · Terrenceburgh
- prospectUserId
- 247
- scheduledAt
- status
- scheduled
- notes
- Amplitudo conitor appositus succurro laboriosam timor.
- createdAt
Component variants
Medium
#141
#141
Small
showings/141 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/141" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/141"
);
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/141"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/141"
)
showing = res.json() {
"id": 141,
"listingId": 54,
"prospectUserId": 247,
"scheduledAt": "2026-01-01T12:00:06.529Z",
"status": "scheduled",
"notes": "Amplitudo conitor appositus succurro laboriosam timor.",
"createdAt": "2026-01-03T22:15:13.168Z"
}