showings #9
- listingId
- Condo in Homestead · Homestead
- prospectUserId
-
Colby Kovacek @colby_kovacek40
- scheduledAt
- status
- cancelled
- notes
- Tamen sono cras alo deleo acquiro credo totus ut crepusculum.
- createdAt
Overview
showings / #9
#9
#9
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/9" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/9" ); 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/9"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/9"
)
showing = res.json() Response
{
"id": 9,
"listingId": 3,
"prospectUserId": 85,
"scheduledAt": "2026-04-12T14:53:48.916Z",
"status": "cancelled",
"notes": "Tamen sono cras alo deleo acquiro credo totus ut crepusculum.",
"createdAt": "2026-04-01T09:21:53.661Z"
}