showings #360
- listingId
- Land in Antonetteport · Antonetteport
- prospectUserId
-
Ryan Conroy @ryan_conroy
- scheduledAt
- status
- completed
- notes
- Audax curiositas denique tabella possimus.
- createdAt
Overview
showings / #360
#360
#360
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/360" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/360" ); 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/360"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/360"
)
showing = res.json() Response
{
"id": 360,
"listingId": 133,
"prospectUserId": 73,
"scheduledAt": "2026-05-19T07:37:37.578Z",
"status": "completed",
"notes": "Audax curiositas denique tabella possimus.",
"createdAt": "2026-05-18T21:52:15.980Z"
}