showings #308
- listingId
- Condo in Casimerport · Casimerport
- prospectUserId
-
Niko Wisozk @niko_wisozk
- scheduledAt
- status
- cancelled
- notes
- Terga laboriosam spoliatio aestivus.
- createdAt
Overview
showings / #308
#308
#308
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/308" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/308" ); 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/308"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/308"
)
showing = res.json() Response
{
"id": 308,
"listingId": 114,
"prospectUserId": 56,
"scheduledAt": "2025-12-06T10:48:23.925Z",
"status": "cancelled",
"notes": "Terga laboriosam spoliatio aestivus.",
"createdAt": "2025-12-06T06:34:02.096Z"
}