showings #363
- listingId
- Land in Antonetteport · Antonetteport
- prospectUserId
-
Lawrence Rogahn @lawrence_rogahn33
- scheduledAt
- status
- scheduled
- notes
- Peior defessus aliquid spargo.
- createdAt
Overview
showings / #363
#363
#363
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/363" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/363" ); 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/363"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/363"
)
showing = res.json() Response
{
"id": 363,
"listingId": 133,
"prospectUserId": 245,
"scheduledAt": "2025-12-21T19:22:34.905Z",
"status": "scheduled",
"notes": "Peior defessus aliquid spargo.",
"createdAt": "2025-12-22T17:02:09.921Z"
}