showings #171
- listingId
- House in West Lemuel · West Lemuel
- prospectUserId
-
Ike Breitenberg @ike.breitenberg
- scheduledAt
- status
- cancelled
- notes
- Vere tui adipisci adiuvo tam admiratio.
- createdAt
Overview
showings / #171
#171
#171
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/171" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/171" ); 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/171"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/171"
)
showing = res.json() Response
{
"id": 171,
"listingId": 63,
"prospectUserId": 72,
"scheduledAt": "2025-11-25T12:21:02.176Z",
"status": "cancelled",
"notes": "Vere tui adipisci adiuvo tam admiratio.",
"createdAt": "2025-11-29T12:15:35.579Z"
}