showings / #132
- listingId
- Condo in Oberbrunnerchester · Oberbrunnerchester
- prospectUserId
- 207
- scheduledAt
- status
- no_show
- notes
- Denuncio civis aurum argumentum cuppedia ulterius administratio audio valens repudiandae.
- createdAt
Component variants
Medium
#132
#132
Small
showings/132 Related
curl -sS \
"https://example-data.com/api/v1/showings/132" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/132"
);
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/132"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/132"
)
showing = res.json() {
"id": 132,
"listingId": 49,
"prospectUserId": 207,
"scheduledAt": "2025-07-20T06:24:31.727Z",
"status": "no_show",
"notes": "Denuncio civis aurum argumentum cuppedia ulterius administratio audio valens repudiandae.",
"createdAt": "2025-07-26T16:03:57.140Z"
}