showings / #6
- listingId
- House in New Otiliatown · New Otiliatown
- prospectUserId
- 71
- scheduledAt
- status
- completed
- notes
- Strues ter coaegresco tutis tempora amplus solus.
- createdAt
Component variants
Medium
#6
#6
Small
showings/6 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/6" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/6"
);
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/6"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/6"
)
showing = res.json() {
"id": 6,
"listingId": 2,
"prospectUserId": 71,
"scheduledAt": "2026-05-08T09:08:05.404Z",
"status": "completed",
"notes": "Strues ter coaegresco tutis tempora amplus solus.",
"createdAt": "2026-05-14T20:06:25.772Z"
}