showings / #170
- listingId
- Townhouse in Jettburgh · Jettburgh
- prospectUserId
- 224
- scheduledAt
- status
- completed
- notes
- Tumultus terebro sequi vigilo itaque somnus.
- createdAt
Component variants
Medium
#170
#170
Small
showings/170 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/170" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/170"
);
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/170"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/170"
)
showing = res.json() {
"id": 170,
"listingId": 62,
"prospectUserId": 224,
"scheduledAt": "2025-10-08T11:28:03.218Z",
"status": "completed",
"notes": "Tumultus terebro sequi vigilo itaque somnus.",
"createdAt": "2025-09-25T03:35:26.729Z"
}