showings #221
- listingId
- House in Philipside · Philipside
- prospectUserId
-
Raheem Kovacek @raheem_kovacek3
- scheduledAt
- status
- scheduled
- notes
- Cauda accedo cotidie capillus crudelis soluta assentator subseco.
- createdAt
Overview
showings / #221
#221
#221
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/221" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/221" ); 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/221"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/221"
)
showing = res.json() Response
{
"id": 221,
"listingId": 83,
"prospectUserId": 57,
"scheduledAt": "2026-06-10T19:47:50.911Z",
"status": "scheduled",
"notes": "Cauda accedo cotidie capillus crudelis soluta assentator subseco.",
"createdAt": "2026-05-21T17:27:17.331Z"
}