showings #42
- listingId
- House in Lake Sanfordfurt · Lake Sanfordfurt
- prospectUserId
-
Stephan Heller @stephan.heller
- scheduledAt
- status
- completed
- notes
- Aggero patruus versus vulgo tandem calcar assumenda necessitatibus.
- createdAt
Overview
showings / #42
#42
#42
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/42" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/42" ); 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/42"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/42"
)
showing = res.json() Response
{
"id": 42,
"listingId": 13,
"prospectUserId": 82,
"scheduledAt": "2025-09-11T14:44:44.787Z",
"status": "completed",
"notes": "Aggero patruus versus vulgo tandem calcar assumenda necessitatibus.",
"createdAt": "2025-09-05T22:33:03.524Z"
}