showings / #228
- listingId
- Apartment in Fort Rhianna · Fort Rhianna
- prospectUserId
- 96
- scheduledAt
- status
- cancelled
- notes
- Neque summisse officia aestivus contego utpote deinde cubo spectaculum.
- createdAt
Component variants
Medium
#228
#228
Small
showings/228 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/228" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/228"
);
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/228"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/228"
)
showing = res.json() {
"id": 228,
"listingId": 86,
"prospectUserId": 96,
"scheduledAt": "2025-11-17T12:03:30.336Z",
"status": "cancelled",
"notes": "Neque summisse officia aestivus contego utpote deinde cubo spectaculum.",
"createdAt": "2025-11-06T11:25:24.808Z"
}