showings #309
- listingId
- Condo in Casimerport · Casimerport
- prospectUserId
-
Queen Lubowitz @queen.lubowitz76
- scheduledAt
- status
- cancelled
- notes
- Vulgus subito temporibus.
- createdAt
Overview
showings / #309
#309
#309
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/309" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/309" ); 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/309"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/309"
)
showing = res.json() Response
{
"id": 309,
"listingId": 114,
"prospectUserId": 28,
"scheduledAt": "2026-01-10T15:51:58.237Z",
"status": "cancelled",
"notes": "Vulgus subito temporibus.",
"createdAt": "2025-12-29T16:40:18.901Z"
}