showings #146
- listingId
- House in Lake Guillermo · Lake Guillermo
- prospectUserId
-
Matt Kuhic @matt_kuhic57
- scheduledAt
- status
- cancelled
- notes
- Ocer quos audentia.
- createdAt
Overview
showings / #146
#146
#146
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/146" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/146" ); 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/146"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/146"
)
showing = res.json() Response
{
"id": 146,
"listingId": 55,
"prospectUserId": 226,
"scheduledAt": "2026-02-27T12:24:51.430Z",
"status": "cancelled",
"notes": "Ocer quos audentia.",
"createdAt": "2026-02-15T04:09:36.978Z"
}