showings / #3
- listingId
- Apartment in Alizestad · Alizestad
- prospectUserId
- 149
- scheduledAt
- status
- completed
- notes
- Cicuta beatae admitto deorsum compono.
- createdAt
Component variants
Medium
#3
#3
Small
showings/3 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/3" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/3"
);
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/3"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/3"
)
showing = res.json() {
"id": 3,
"listingId": 1,
"prospectUserId": 149,
"scheduledAt": "2026-01-07T16:05:15.982Z",
"status": "completed",
"notes": "Cicuta beatae admitto deorsum compono.",
"createdAt": "2025-12-20T03:56:42.468Z"
}