showings / #80
- listingId
- Apartment in Westminster · Westminster
- prospectUserId
- 113
- scheduledAt
- status
- completed
- notes
- Creber votum ait creber vobis ante termes.
- createdAt
Component variants
Medium
#80
#80
Small
showings/80 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/80" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/80"
);
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/80"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/80"
)
showing = res.json() {
"id": 80,
"listingId": 28,
"prospectUserId": 113,
"scheduledAt": "2025-04-29T06:27:29.169Z",
"status": "completed",
"notes": "Creber votum ait creber vobis ante termes.",
"createdAt": "2025-04-27T17:55:54.563Z"
}