showings #224
- listingId
- House in Camarillo · Camarillo
- prospectUserId
-
Celia D'Amore @celia_damore
- scheduledAt
- status
- scheduled
- notes
- Vehemens contigo angustus decens callide enim vulgaris cohaero.
- createdAt
Overview
showings / #224
#224
#224
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/224" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/224" ); 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/224"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/224"
)
showing = res.json() Response
{
"id": 224,
"listingId": 84,
"prospectUserId": 24,
"scheduledAt": "2025-04-09T20:59:37.455Z",
"status": "scheduled",
"notes": "Vehemens contigo angustus decens callide enim vulgaris cohaero.",
"createdAt": "2025-04-07T20:33:00.381Z"
}