showings #450
- listingId
- Townhouse in Bradenton · Bradenton
- prospectUserId
-
Mazie Douglas @mazie_douglas
- scheduledAt
- status
- completed
- notes
- Arcus vos accusator adhuc tum.
- createdAt
Overview
showings / #450
#450
#450
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/450" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/450" ); 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/450"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/450"
)
showing = res.json() Response
{
"id": 450,
"listingId": 169,
"prospectUserId": 89,
"scheduledAt": "2025-11-21T03:57:15.580Z",
"status": "completed",
"notes": "Arcus vos accusator adhuc tum.",
"createdAt": "2025-11-26T06:11:39.634Z"
}