showings / #135
- listingId
- Land in Ryannburgh · Ryannburgh
- prospectUserId
- 32
- scheduledAt
- status
- completed
- notes
- Bis allatus subseco cognomen supellex.
- createdAt
Component variants
Medium
#135
#135
Small
showings/135 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/135" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/135"
);
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/135"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/135"
)
showing = res.json() {
"id": 135,
"listingId": 51,
"prospectUserId": 32,
"scheduledAt": "2026-05-04T23:11:29.457Z",
"status": "completed",
"notes": "Bis allatus subseco cognomen supellex.",
"createdAt": "2026-05-07T19:40:06.851Z"
}