showings #474
- listingId
- Condo in Lake Kristinashire · Lake Kristinashire
- prospectUserId
-
Sonia Nolan @sonia_nolan
- scheduledAt
- status
- cancelled
- notes
- Utpote claustrum admiratio voco urbanus antiquus cognatus audeo.
- createdAt
Overview
showings / #474
#474
#474
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/474" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/474" ); 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/474"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/474"
)
showing = res.json() Response
{
"id": 474,
"listingId": 179,
"prospectUserId": 208,
"scheduledAt": "2026-02-11T23:48:02.178Z",
"status": "cancelled",
"notes": "Utpote claustrum admiratio voco urbanus antiquus cognatus audeo.",
"createdAt": "2026-01-17T00:53:15.039Z"
}