showings #426
- listingId
- House in Plantation · Plantation
- prospectUserId
-
Lacy Gusikowski @lacy.gusikowski
- scheduledAt
- status
- cancelled
- notes
- Stabilis thorax adhaero subvenio bene.
- createdAt
Overview
showings / #426
#426
#426
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/426" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/426" ); 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/426"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/426"
)
showing = res.json() Response
{
"id": 426,
"listingId": 159,
"prospectUserId": 47,
"scheduledAt": "2025-04-19T04:14:02.174Z",
"status": "cancelled",
"notes": "Stabilis thorax adhaero subvenio bene.",
"createdAt": "2025-04-19T16:30:55.467Z"
}