showings #420
- listingId
- Condo in Schummberg · Schummberg
- prospectUserId
-
Oma Franecki-Johnson @oma.franecki-johnson
- scheduledAt
- status
- scheduled
- notes
- Cumque vehemens defluo ducimus.
- createdAt
Overview
showings / #420
#420
#420
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/420" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/420" ); 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/420"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/420"
)
showing = res.json() Response
{
"id": 420,
"listingId": 157,
"prospectUserId": 242,
"scheduledAt": "2025-09-18T13:28:12.423Z",
"status": "scheduled",
"notes": "Cumque vehemens defluo ducimus.",
"createdAt": "2025-09-01T10:50:37.931Z"
}