showings / #112
- listingId
- Condo in San Marcos · San Marcos
- prospectUserId
- 201
- scheduledAt
- status
- scheduled
- notes
- Caries capillus eveniet vir desparatus ventus aperio temeritas.
- createdAt
Component variants
Medium
#112
#112
Small
showings/112 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/112" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/112"
);
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/112"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/112"
)
showing = res.json() {
"id": 112,
"listingId": 42,
"prospectUserId": 201,
"scheduledAt": "2026-01-12T19:58:58.461Z",
"status": "scheduled",
"notes": "Caries capillus eveniet vir desparatus ventus aperio temeritas.",
"createdAt": "2025-12-16T20:14:13.562Z"
}