showings / #194
- listingId
- Apartment in Sipesfield · Sipesfield
- prospectUserId
- 187
- scheduledAt
- status
- cancelled
- notes
- Pax crapula audentia tollo thymum crur tergum aiunt approbo quisquam.
- createdAt
Component variants
Medium
#194
#194
Small
showings/194 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/194" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/194"
);
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/194"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/194"
)
showing = res.json() {
"id": 194,
"listingId": 72,
"prospectUserId": 187,
"scheduledAt": "2025-09-28T18:04:02.954Z",
"status": "cancelled",
"notes": "Pax crapula audentia tollo thymum crur tergum aiunt approbo quisquam.",
"createdAt": "2025-09-24T20:23:10.619Z"
}