showings / #149
- listingId
- Condo in Ramonport · Ramonport
- prospectUserId
- 191
- scheduledAt
- status
- completed
- notes
- Comminor confugo benevolentia absque usus.
- createdAt
Component variants
Medium
#149
#149
Small
showings/149 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/149" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/149"
);
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/149"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/149"
)
showing = res.json() {
"id": 149,
"listingId": 56,
"prospectUserId": 191,
"scheduledAt": "2025-06-13T02:57:55.409Z",
"status": "completed",
"notes": "Comminor confugo benevolentia absque usus.",
"createdAt": "2025-06-08T19:01:17.291Z"
}