showings / #161
- listingId
- Townhouse in Fort Hunter · Fort Hunter
- prospectUserId
- 88
- scheduledAt
- status
- scheduled
- notes
- Cogo tutamen derideo cuppedia adulescens.
- createdAt
Component variants
Medium
#161
#161
Small
showings/161 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/161" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/161"
);
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/161"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/161"
)
showing = res.json() {
"id": 161,
"listingId": 60,
"prospectUserId": 88,
"scheduledAt": "2025-01-12T19:26:54.718Z",
"status": "scheduled",
"notes": "Cogo tutamen derideo cuppedia adulescens.",
"createdAt": "2024-12-15T17:43:21.590Z"
}