showings #189
- listingId
- Apartment in Visalia · Visalia
- prospectUserId
-
Wendy Borer @wendy_borer
- scheduledAt
- status
- no_show
- notes
- Vinco minus contra.
- createdAt
Overview
showings / #189
#189
#189
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/189" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/189" ); 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/189"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/189"
)
showing = res.json() Response
{
"id": 189,
"listingId": 69,
"prospectUserId": 141,
"scheduledAt": "2026-03-30T05:24:33.063Z",
"status": "no_show",
"notes": "Vinco minus contra.",
"createdAt": "2026-03-09T00:52:09.801Z"
}