showings #119
- listingId
- House in Hammesboro · Hammesboro
- prospectUserId
-
Wallace Batz @wallace_batz
- scheduledAt
- status
- scheduled
- notes
- Ut arceo aliquam eos temeritas credo corroboro statua suus capillus.
- createdAt
Overview
showings / #119
#119
#119
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/119" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/119" ); 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/119"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/119"
)
showing = res.json() Response
{
"id": 119,
"listingId": 44,
"prospectUserId": 229,
"scheduledAt": "2026-01-29T08:05:45.643Z",
"status": "scheduled",
"notes": "Ut arceo aliquam eos temeritas credo corroboro statua suus capillus.",
"createdAt": "2026-02-03T10:19:46.850Z"
}