showings #281
- listingId
- Condo in Rutherfordside · Rutherfordside
- prospectUserId
-
Michaela Feeney @michaela_feeney46
- scheduledAt
- status
- completed
- notes
- Calcar certus ago.
- createdAt
Overview
showings / #281
#281
#281
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/281" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/281" ); 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/281"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/281"
)
showing = res.json() Response
{
"id": 281,
"listingId": 105,
"prospectUserId": 87,
"scheduledAt": "2025-12-07T07:51:27.726Z",
"status": "completed",
"notes": "Calcar certus ago.",
"createdAt": "2025-11-10T15:31:52.497Z"
}