showings #479
- listingId
- Townhouse in Lefflerboro · Lefflerboro
- prospectUserId
-
Michale Hilpert @michale_hilpert62
- scheduledAt
- status
- completed
- notes
- Repellendus ea suppellex aperte credo accedo tergiversatio titulus.
- createdAt
Overview
showings / #479
#479
#479
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/479" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/479" ); 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/479"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/479"
)
showing = res.json() Response
{
"id": 479,
"listingId": 181,
"prospectUserId": 250,
"scheduledAt": "2025-12-02T19:42:32.669Z",
"status": "completed",
"notes": "Repellendus ea suppellex aperte credo accedo tergiversatio titulus.",
"createdAt": "2025-11-25T21:08:15.996Z"
}