showings #278
- listingId
- Land in Alekcester · Alekcester
- prospectUserId
-
Myrtie Daniel @myrtie_daniel33
- scheduledAt
- status
- completed
- notes
- Absque cogo odio caritas.
- createdAt
Overview
showings / #278
#278
#278
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/278" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/278" ); 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/278"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/278"
)
showing = res.json() Response
{
"id": 278,
"listingId": 104,
"prospectUserId": 45,
"scheduledAt": "2025-07-27T09:18:42.922Z",
"status": "completed",
"notes": "Absque cogo odio caritas.",
"createdAt": "2025-07-22T23:26:13.236Z"
}