showings #268
- listingId
- Commercial Space in Havenstead · Havenstead
- prospectUserId
-
Hortense Cruickshank @hortense.cruickshank65
- scheduledAt
- status
- cancelled
- notes
- Quam quaerat denuo tutamen viriliter.
- createdAt
Overview
showings / #268
#268
#268
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/268" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/268" ); 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/268"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/268"
)
showing = res.json() Response
{
"id": 268,
"listingId": 100,
"prospectUserId": 83,
"scheduledAt": "2026-04-13T02:53:15.285Z",
"status": "cancelled",
"notes": "Quam quaerat denuo tutamen viriliter.",
"createdAt": "2026-03-19T20:54:21.173Z"
}