showings / #210
- listingId
- House in Fort Sterling · Fort Sterling
- prospectUserId
- 26
- scheduledAt
- status
- completed
- notes
- Cursus defluo sodalitas.
- createdAt
Component variants
Medium
#210
#210
Small
showings/210 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/210" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/210"
);
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/210"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/210"
)
showing = res.json() {
"id": 210,
"listingId": 77,
"prospectUserId": 26,
"scheduledAt": "2025-10-04T10:42:20.354Z",
"status": "completed",
"notes": "Cursus defluo sodalitas.",
"createdAt": "2025-09-16T17:43:54.170Z"
}