showings #419
- listingId
- Condo in Schummberg · Schummberg
- prospectUserId
-
Kathleen Lynch @kathleen_lynch1
- scheduledAt
- status
- completed
- notes
- Voluptate eligendi nobis solutio conspergo sol minus adversus coruscus.
- createdAt
Overview
showings / #419
#419
#419
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/419" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/419" ); 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/419"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/419"
)
showing = res.json() Response
{
"id": 419,
"listingId": 157,
"prospectUserId": 139,
"scheduledAt": "2025-12-07T04:47:13.417Z",
"status": "completed",
"notes": "Voluptate eligendi nobis solutio conspergo sol minus adversus coruscus.",
"createdAt": "2025-12-05T19:41:57.226Z"
}