showings #246
- listingId
- Commercial Space in Yorba Linda · Yorba Linda
- prospectUserId
-
Green Kozey @green_kozey22
- scheduledAt
- status
- completed
- notes
- Volva ancilla deprimo ancilla ver.
- createdAt
Overview
showings / #246
#246
#246
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/246" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/246" ); const showing = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/showings.d.ts https://example-data.com/types/showings.d.ts
import type { Showing } from "./types/showings";
const res = await fetch(
"https://example-data.com/api/v1/showings/246"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/246"
)
showing = res.json() Response
{
"id": 246,
"listingId": 92,
"prospectUserId": 49,
"scheduledAt": "2026-04-05T16:22:04.934Z",
"status": "completed",
"notes": "Volva ancilla deprimo ancilla ver.",
"createdAt": "2026-04-05T12:46:27.209Z"
}