showings #298
- listingId
- House in Strongsville · Strongsville
- prospectUserId
-
Kathleen Lynch @kathleen_lynch1
- scheduledAt
- status
- completed
- notes
- Venio tot ventus cito sufficio somnus cimentarius turbo barba.
- createdAt
Overview
showings / #298
#298
#298
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/298" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/298" ); 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/298"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/298"
)
showing = res.json() Response
{
"id": 298,
"listingId": 110,
"prospectUserId": 139,
"scheduledAt": "2025-12-26T04:04:40.909Z",
"status": "completed",
"notes": "Venio tot ventus cito sufficio somnus cimentarius turbo barba.",
"createdAt": "2025-12-01T20:22:28.359Z"
}