showings #108
- listingId
- Townhouse in Irvingborough · Irvingborough
- prospectUserId
-
Phyllis Hyatt @phyllis_hyatt83
- scheduledAt
- status
- scheduled
- notes
- Civitas architecto arto utrum.
- createdAt
Overview
showings / #108
#108
#108
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/108" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/108" ); 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/108"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/108"
)
showing = res.json() Response
{
"id": 108,
"listingId": 39,
"prospectUserId": 84,
"scheduledAt": "2026-05-22T15:16:29.072Z",
"status": "scheduled",
"notes": "Civitas architecto arto utrum.",
"createdAt": "2026-04-28T22:50:20.905Z"
}