showings #191
- listingId
- House in Henderson · Henderson
- prospectUserId
-
Jennifer Hoeger @jennifer.hoeger
- scheduledAt
- status
- scheduled
- notes
- Verto tabernus deludo debitis coniuratio illum.
- createdAt
Overview
showings / #191
#191
#191
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/191" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/191" ); 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/191"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/191"
)
showing = res.json() Response
{
"id": 191,
"listingId": 71,
"prospectUserId": 119,
"scheduledAt": "2026-04-25T23:34:55.000Z",
"status": "scheduled",
"notes": "Verto tabernus deludo debitis coniuratio illum.",
"createdAt": "2026-04-13T07:13:40.102Z"
}