showings #387
- listingId
- Commercial Space in Ryanncester · Ryanncester
- prospectUserId
-
Gerda Streich @gerda_streich
- scheduledAt
- status
- completed
- notes
- Certus claudeo apostolus auctus deputo volo cauda.
- createdAt
Overview
showings / #387
#387
#387
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/387" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/387" ); 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/387"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/387"
)
showing = res.json() Response
{
"id": 387,
"listingId": 143,
"prospectUserId": 126,
"scheduledAt": "2025-06-16T14:14:24.567Z",
"status": "completed",
"notes": "Certus claudeo apostolus auctus deputo volo cauda.",
"createdAt": "2025-06-10T10:16:16.565Z"
}