showings / #155
- listingId
- Land in Nathenstad · Nathenstad
- prospectUserId
- 133
- scheduledAt
- status
- scheduled
- notes
- Tener creator demum commemoro terra vaco velociter acer.
- createdAt
Component variants
Medium
#155
#155
Small
showings/155 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/155" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/155"
);
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/155"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/155"
)
showing = res.json() {
"id": 155,
"listingId": 57,
"prospectUserId": 133,
"scheduledAt": "2025-09-27T21:35:23.017Z",
"status": "scheduled",
"notes": "Tener creator demum commemoro terra vaco velociter acer.",
"createdAt": "2025-09-05T03:49:29.745Z"
}