showings #449
- listingId
- Townhouse in Bradenton · Bradenton
- prospectUserId
-
Joseph Steuber @joseph_steuber
- scheduledAt
- status
- completed
- notes
- Amplus asperiores arbustum adeptio carbo porro adeo caritas patrocinor claro.
- createdAt
Overview
showings / #449
#449
#449
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/449" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/449" ); 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/449"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/449"
)
showing = res.json() Response
{
"id": 449,
"listingId": 169,
"prospectUserId": 221,
"scheduledAt": "2025-05-18T16:42:48.794Z",
"status": "completed",
"notes": "Amplus asperiores arbustum adeptio carbo porro adeo caritas patrocinor claro.",
"createdAt": "2025-05-19T02:42:35.784Z"
}