showings / #18
- listingId
- House in South Maribelton · South Maribelton
- prospectUserId
- 74
- scheduledAt
- status
- scheduled
- notes
- Beatae cicuta vergo a celo abstergo crinis audacia.
- createdAt
Component variants
Medium
#18
#18
Small
showings/18 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/18" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/18"
);
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/18"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/18"
)
showing = res.json() {
"id": 18,
"listingId": 6,
"prospectUserId": 74,
"scheduledAt": "2025-09-11T13:03:16.172Z",
"status": "scheduled",
"notes": "Beatae cicuta vergo a celo abstergo crinis audacia.",
"createdAt": "2025-09-10T03:08:27.321Z"
}