showings #111
- listingId
- House in Port Charlotte · Port Charlotte
- prospectUserId
-
Michaela Feeney @michaela_feeney46
- scheduledAt
- status
- cancelled
- notes
- Demoror cado tergeo tersus.
- createdAt
Overview
showings / #111
#111
#111
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/111" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/111" ); 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/111"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/111"
)
showing = res.json() Response
{
"id": 111,
"listingId": 41,
"prospectUserId": 87,
"scheduledAt": "2026-04-18T22:09:13.644Z",
"status": "cancelled",
"notes": "Demoror cado tergeo tersus.",
"createdAt": "2026-04-07T21:35:56.021Z"
}