showings #104
- listingId
- House in East Deion · East Deion
- prospectUserId
-
Kaleb Schmidt @kaleb.schmidt
- scheduledAt
- status
- scheduled
- notes
- Officia infit spoliatio cerno audio copia toties possimus.
- createdAt
Overview
showings / #104
#104
#104
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/104" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/104" ); 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/104"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/104"
)
showing = res.json() Response
{
"id": 104,
"listingId": 38,
"prospectUserId": 171,
"scheduledAt": "2026-04-26T04:44:19.326Z",
"status": "scheduled",
"notes": "Officia infit spoliatio cerno audio copia toties possimus.",
"createdAt": "2026-04-10T02:22:41.669Z"
}