showings / #33
- listingId
- House in South Ivah · South Ivah
- prospectUserId
- 111
- scheduledAt
- status
- completed
- notes
- Cupio adsuesco undique vado.
- createdAt
Component variants
Medium
#33
#33
Small
showings/33 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/33" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/33"
);
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/33"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/33"
)
showing = res.json() {
"id": 33,
"listingId": 11,
"prospectUserId": 111,
"scheduledAt": "2025-08-06T17:09:34.113Z",
"status": "completed",
"notes": "Cupio adsuesco undique vado.",
"createdAt": "2025-08-07T20:43:54.643Z"
}