showings #247
- listingId
- Condo in Norbertoview · Norbertoview
- prospectUserId
-
Sam Hegmann-Jast @sam_hegmann-jast86
- scheduledAt
- status
- completed
- notes
- Curatio tenax trepide.
- createdAt
Overview
showings / #247
#247
#247
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/247" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/247" ); 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/247"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/247"
)
showing = res.json() Response
{
"id": 247,
"listingId": 93,
"prospectUserId": 114,
"scheduledAt": "2026-01-20T17:26:14.897Z",
"status": "completed",
"notes": "Curatio tenax trepide.",
"createdAt": "2025-12-24T01:10:31.379Z"
}