showings #355
- listingId
- Land in Killeen · Killeen
- prospectUserId
-
Amya Powlowski @amya_powlowski32
- scheduledAt
- status
- scheduled
- notes
- Balbus impedit crebro.
- createdAt
Overview
showings / #355
#355
#355
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/355" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/355" ); 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/355"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/355"
)
showing = res.json() Response
{
"id": 355,
"listingId": 131,
"prospectUserId": 80,
"scheduledAt": "2026-04-06T14:21:46.303Z",
"status": "scheduled",
"notes": "Balbus impedit crebro.",
"createdAt": "2026-04-10T05:34:32.603Z"
}