showings #409
- listingId
- Apartment in Hacketthaven · Hacketthaven
- prospectUserId
-
Edward Jacobson @edward_jacobson38
- scheduledAt
- status
- completed
- notes
- Aperiam ambitus attonbitus cicuta thesis virga conscendo aperiam terror.
- createdAt
Overview
showings / #409
#409
#409
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/409" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/409" ); 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/409"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/409"
)
showing = res.json() Response
{
"id": 409,
"listingId": 152,
"prospectUserId": 38,
"scheduledAt": "2026-05-29T20:04:14.678Z",
"status": "completed",
"notes": "Aperiam ambitus attonbitus cicuta thesis virga conscendo aperiam terror.",
"createdAt": "2026-05-20T04:24:13.243Z"
}