showings #121
- listingId
- House in Hammesboro · Hammesboro
- prospectUserId
-
Trace Witting-Stamm @trace_witting-stamm17
- scheduledAt
- status
- completed
- notes
- Calco civitas tergeo asperiores cruentus pel reiciendis sponte.
- createdAt
Overview
showings / #121
#121
#121
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/121" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/121" ); 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/121"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/121"
)
showing = res.json() Response
{
"id": 121,
"listingId": 44,
"prospectUserId": 42,
"scheduledAt": "2025-09-29T11:59:35.736Z",
"status": "completed",
"notes": "Calco civitas tergeo asperiores cruentus pel reiciendis sponte.",
"createdAt": "2025-10-02T13:30:28.834Z"
}