showings / #182
- listingId
- House in Blandaburgh · Blandaburgh
- prospectUserId
- 223
- scheduledAt
- status
- completed
- notes
- Ater contigo trans fugiat amiculum.
- createdAt
Component variants
Medium
#182
#182
Small
showings/182 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/182" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/182"
);
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/182"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/182"
)
showing = res.json() {
"id": 182,
"listingId": 67,
"prospectUserId": 223,
"scheduledAt": "2025-05-31T20:14:30.012Z",
"status": "completed",
"notes": "Ater contigo trans fugiat amiculum.",
"createdAt": "2025-05-27T04:28:07.430Z"
}