showings #125
- listingId
- House in Duluth · Duluth
- prospectUserId
-
Brycen Bayer @brycen_bayer60
- scheduledAt
- status
- cancelled
- notes
- Acies derideo sed.
- createdAt
Overview
showings / #125
#125
#125
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/125" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/125" ); 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/125"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/125"
)
showing = res.json() Response
{
"id": 125,
"listingId": 46,
"prospectUserId": 6,
"scheduledAt": "2026-06-03T02:42:56.690Z",
"status": "cancelled",
"notes": "Acies derideo sed.",
"createdAt": "2026-05-06T06:23:52.107Z"
}