showings / #140
- listingId
- Apartment in Lake Lillieboro · Lake Lillieboro
- prospectUserId
- 213
- scheduledAt
- status
- completed
- notes
- Vehemens quasi alveus cribro damno degero libero beatus.
- createdAt
Component variants
Medium
#140
#140
Small
showings/140 Related
curl -sS \
"https://example-data.com/api/v1/showings/140" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/140"
);
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/140"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/140"
)
showing = res.json() {
"id": 140,
"listingId": 53,
"prospectUserId": 213,
"scheduledAt": "2026-05-02T08:55:30.390Z",
"status": "completed",
"notes": "Vehemens quasi alveus cribro damno degero libero beatus.",
"createdAt": "2026-04-28T20:31:43.247Z"
}