showings / #84
- listingId
- House in Delray Beach · Delray Beach
- prospectUserId
- 130
- scheduledAt
- status
- scheduled
- notes
- Vigor sustineo defessus bestia eius corporis somniculosus truculenter.
- createdAt
Component variants
Medium
#84
#84
Small
showings/84 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/84" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/84"
);
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/84"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/84"
)
showing = res.json() {
"id": 84,
"listingId": 29,
"prospectUserId": 130,
"scheduledAt": "2025-12-10T00:43:29.318Z",
"status": "scheduled",
"notes": "Vigor sustineo defessus bestia eius corporis somniculosus truculenter.",
"createdAt": "2025-11-26T01:06:16.138Z"
}