showings / #215
- listingId
- Condo in Okunevacester · Okunevacester
- prospectUserId
- 213
- scheduledAt
- status
- scheduled
- notes
- Fuga a amitto vulpes similique timidus defungo urbs.
- createdAt
Component variants
Medium
#215
#215
Small
showings/215 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/215" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/215"
);
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/215"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/215"
)
showing = res.json() {
"id": 215,
"listingId": 81,
"prospectUserId": 213,
"scheduledAt": "2025-07-08T11:53:04.899Z",
"status": "scheduled",
"notes": "Fuga a amitto vulpes similique timidus defungo urbs.",
"createdAt": "2025-06-23T04:57:20.232Z"
}