showings / #67
- listingId
- Apartment in Lorain · Lorain
- prospectUserId
- 237
- scheduledAt
- status
- cancelled
- notes
- Curto speculum carbo amaritudo.
- createdAt
Component variants
Medium
#67
#67
Small
showings/67 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/67" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/67"
);
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/67"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/67"
)
showing = res.json() {
"id": 67,
"listingId": 21,
"prospectUserId": 237,
"scheduledAt": "2026-06-04T15:17:01.662Z",
"status": "cancelled",
"notes": "Curto speculum carbo amaritudo.",
"createdAt": "2026-05-20T12:31:34.273Z"
}