showings / #180
- listingId
- Apartment in Port Gino · Port Gino
- prospectUserId
- 15
- scheduledAt
- status
- scheduled
- notes
- Artificiose speculum triduana adipisci coniuratio inventore reprehenderit subseco sublime abstergo.
- createdAt
Component variants
Medium
#180
#180
Small
showings/180 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/180" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/180"
);
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/180"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/180"
)
showing = res.json() {
"id": 180,
"listingId": 66,
"prospectUserId": 15,
"scheduledAt": "2026-02-05T20:46:06.303Z",
"status": "scheduled",
"notes": "Artificiose speculum triduana adipisci coniuratio inventore reprehenderit subseco sublime abstergo.",
"createdAt": "2026-01-25T00:01:11.246Z"
}