showings / #239
- listingId
- House in Romaguerachester · Romaguerachester
- prospectUserId
- 209
- scheduledAt
- status
- scheduled
- notes
- Vestrum utique aro.
- createdAt
Component variants
Medium
#239
#239
Small
showings/239 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/239" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/239"
);
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/239"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/239"
)
showing = res.json() {
"id": 239,
"listingId": 90,
"prospectUserId": 209,
"scheduledAt": "2025-12-07T01:52:37.047Z",
"status": "scheduled",
"notes": "Vestrum utique aro.",
"createdAt": "2025-11-26T18:10:50.886Z"
}