showings / #5
- listingId
- House in New Otiliatown · New Otiliatown
- prospectUserId
- 162
- scheduledAt
- status
- cancelled
- notes
- Tamen vis clamo.
- createdAt
Component variants
Medium
#5
#5
Small
showings/5 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/5" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/5"
);
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/5"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/5"
)
showing = res.json() {
"id": 5,
"listingId": 2,
"prospectUserId": 162,
"scheduledAt": "2026-04-08T16:21:57.481Z",
"status": "cancelled",
"notes": "Tamen vis clamo.",
"createdAt": "2026-03-22T00:30:08.245Z"
}