showings #282
- listingId
- Condo in Rutherfordside · Rutherfordside
- prospectUserId
-
Maymie Boehm @maymie.boehm90
- scheduledAt
- status
- scheduled
- notes
- Verbum unde civitas valeo curis copia velociter.
- createdAt
Overview
showings / #282
#282
#282
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/282" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/282" ); 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/282"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/282"
)
showing = res.json() Response
{
"id": 282,
"listingId": 105,
"prospectUserId": 48,
"scheduledAt": "2026-04-20T11:07:55.126Z",
"status": "scheduled",
"notes": "Verbum unde civitas valeo curis copia velociter.",
"createdAt": "2026-04-22T10:36:12.459Z"
}