showings #428
- listingId
- Condo in Port Billieport · Port Billieport
- prospectUserId
-
Jensen Bashirian @jensen_bashirian
- scheduledAt
- status
- cancelled
- notes
- Aspicio damnatio vulariter spectaculum.
- createdAt
Overview
showings / #428
#428
#428
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/428" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/428" ); 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/428"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/428"
)
showing = res.json() Response
{
"id": 428,
"listingId": 160,
"prospectUserId": 29,
"scheduledAt": "2025-11-26T15:59:40.347Z",
"status": "cancelled",
"notes": "Aspicio damnatio vulariter spectaculum.",
"createdAt": "2025-11-25T10:50:47.973Z"
}