showings / #99
- listingId
- Land in Fort King · Fort King
- prospectUserId
- 165
- scheduledAt
- status
- cancelled
- notes
- Iste cerno maiores optio curtus.
- createdAt
Component variants
Medium
#99
#99
Small
showings/99 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/99" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/99"
);
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/99"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/99"
)
showing = res.json() {
"id": 99,
"listingId": 36,
"prospectUserId": 165,
"scheduledAt": "2025-10-28T15:38:10.418Z",
"status": "cancelled",
"notes": "Iste cerno maiores optio curtus.",
"createdAt": "2025-10-05T08:14:18.460Z"
}