showings / #92
- listingId
- House in Laredo · Laredo
- prospectUserId
- 212
- scheduledAt
- status
- scheduled
- notes
- Id color aqua ambulo infit curto creta cernuus sequi.
- createdAt
Component variants
Medium
#92
#92
Small
showings/92 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/92" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/92"
);
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/92"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/92"
)
showing = res.json() {
"id": 92,
"listingId": 33,
"prospectUserId": 212,
"scheduledAt": "2025-07-05T03:41:59.391Z",
"status": "scheduled",
"notes": "Id color aqua ambulo infit curto creta cernuus sequi.",
"createdAt": "2025-06-26T13:28:05.804Z"
}