showings #279
- listingId
- Land in Alekcester · Alekcester
- prospectUserId
-
Joseph Nitzsche @joseph_nitzsche
- scheduledAt
- status
- scheduled
- notes
- Taedium minima bellum communis aestas verbera.
- createdAt
Overview
showings / #279
#279
#279
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/279" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/279" ); 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/279"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/279"
)
showing = res.json() Response
{
"id": 279,
"listingId": 104,
"prospectUserId": 196,
"scheduledAt": "2026-06-06T23:22:18.069Z",
"status": "scheduled",
"notes": "Taedium minima bellum communis aestas verbera.",
"createdAt": "2026-05-19T05:24:07.233Z"
}