showings / #2
- listingId
- Apartment in Alizestad · Alizestad
- prospectUserId
- 120
- scheduledAt
- status
- completed
- notes
- Commemoro amplus defero corrumpo recusandae.
- createdAt
Component variants
Medium
#2
#2
Small
showings/2 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/2" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/2"
);
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/2"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/2"
)
showing = res.json() {
"id": 2,
"listingId": 1,
"prospectUserId": 120,
"scheduledAt": "2025-07-25T12:16:25.011Z",
"status": "completed",
"notes": "Commemoro amplus defero corrumpo recusandae.",
"createdAt": "2025-07-09T04:49:31.337Z"
}