showings #217
- listingId
- House in Fort Randi · Fort Randi
- prospectUserId
-
Florencio Mohr @florencio_mohr
- scheduledAt
- status
- scheduled
- notes
- Bellicus tempus rerum currus cotidie uredo.
- createdAt
Overview
showings / #217
#217
#217
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/217" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/217" ); 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/217"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/217"
)
showing = res.json() Response
{
"id": 217,
"listingId": 82,
"prospectUserId": 71,
"scheduledAt": "2026-04-15T18:47:15.284Z",
"status": "scheduled",
"notes": "Bellicus tempus rerum currus cotidie uredo.",
"createdAt": "2026-03-31T06:22:36.723Z"
}