showings / #69
- listingId
- Apartment in Sengerberg · Sengerberg
- prospectUserId
- 144
- scheduledAt
- status
- cancelled
- notes
- Capio ratione aetas aduro.
- createdAt
Component variants
Medium
#69
#69
Small
showings/69 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/69" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/69"
);
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/69"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/69"
)
showing = res.json() {
"id": 69,
"listingId": 22,
"prospectUserId": 144,
"scheduledAt": "2025-12-21T00:51:46.194Z",
"status": "cancelled",
"notes": "Capio ratione aetas aduro.",
"createdAt": "2025-12-03T15:21:08.885Z"
}