showings / #105
- listingId
- House in East Deion · East Deion
- prospectUserId
- 31
- scheduledAt
- status
- completed
- notes
- Voluptas speciosus appono synagoga uredo tabesco tabula tactus.
- createdAt
Component variants
Medium
#105
#105
Small
showings/105 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/105" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/105"
);
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/105"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/105"
)
showing = res.json() {
"id": 105,
"listingId": 38,
"prospectUserId": 31,
"scheduledAt": "2025-07-02T23:43:29.621Z",
"status": "completed",
"notes": "Voluptas speciosus appono synagoga uredo tabesco tabula tactus.",
"createdAt": "2025-06-30T06:46:05.753Z"
}