showings #23
- listingId
- Land in South Emmie · South Emmie
- prospectUserId
-
Everett Yundt @everett_yundt11
- scheduledAt
- status
- cancelled
- notes
- Conitor nihil dignissimos cruentus vitiosus ante assentator annus vinitor turpis.
- createdAt
Overview
showings / #23
#23
#23
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/23" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/23" ); 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/23"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/23"
)
showing = res.json() Response
{
"id": 23,
"listingId": 7,
"prospectUserId": 44,
"scheduledAt": "2026-01-18T22:06:27.949Z",
"status": "cancelled",
"notes": "Conitor nihil dignissimos cruentus vitiosus ante assentator annus vinitor turpis.",
"createdAt": "2025-12-31T21:55:44.159Z"
}