showings #238
- listingId
- House in Romaguerachester · Romaguerachester
- prospectUserId
-
Lilla Koss @lilla.koss
- scheduledAt
- status
- cancelled
- notes
- Aliquid ante placeat tepidus.
- createdAt
Overview
showings / #238
#238
#238
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/238" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/238" ); 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/238"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/238"
)
showing = res.json() Response
{
"id": 238,
"listingId": 90,
"prospectUserId": 59,
"scheduledAt": "2025-09-16T09:30:12.434Z",
"status": "cancelled",
"notes": "Aliquid ante placeat tepidus.",
"createdAt": "2025-09-20T04:53:22.038Z"
}