showings #137
- listingId
- House in Albany · Albany
- prospectUserId
-
Jo Haag-Mayer @jo_haag-mayer
- scheduledAt
- status
- cancelled
- notes
- Barba defleo infit demum advenio teneo velit crepusculum.
- createdAt
Overview
showings / #137
#137
#137
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/137" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/137" ); 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/137"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/137"
)
showing = res.json() Response
{
"id": 137,
"listingId": 52,
"prospectUserId": 54,
"scheduledAt": "2025-12-01T15:46:55.877Z",
"status": "cancelled",
"notes": "Barba defleo infit demum advenio teneo velit crepusculum.",
"createdAt": "2025-11-23T05:02:09.647Z"
}