showings #305
- listingId
- Condo in Grantburgh · Grantburgh
- prospectUserId
-
Lilla Koss @lilla.koss
- scheduledAt
- status
- cancelled
- notes
- Theca placeat surculus conduco audacia.
- createdAt
Overview
showings / #305
#305
#305
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/305" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/305" ); 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/305"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/305"
)
showing = res.json() Response
{
"id": 305,
"listingId": 113,
"prospectUserId": 59,
"scheduledAt": "2026-05-01T10:29:16.181Z",
"status": "cancelled",
"notes": "Theca placeat surculus conduco audacia.",
"createdAt": "2026-04-30T21:54:07.652Z"
}