showings / #201
- listingId
- Condo in West Jaquelineport · West Jaquelineport
- prospectUserId
- 60
- scheduledAt
- status
- cancelled
- notes
- Velit earum laboriosam optio.
- createdAt
Component variants
Medium
#201
#201
Small
showings/201 Related
curl -sS \
"https://example-data.com/api/v1/showings/201" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/201"
);
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/201"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/201"
)
showing = res.json() {
"id": 201,
"listingId": 75,
"prospectUserId": 60,
"scheduledAt": "2026-02-18T02:16:57.934Z",
"status": "cancelled",
"notes": "Velit earum laboriosam optio.",
"createdAt": "2026-02-13T02:26:29.625Z"
}