showings #290
- listingId
- Land in New Jarrellcester · New Jarrellcester
- prospectUserId
-
Matilde Beahan @matilde_beahan
- scheduledAt
- status
- scheduled
- notes
- Possimus aggero copia utrum peior aeternus benevolentia.
- createdAt
Overview
showings / #290
#290
#290
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/290" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/290" ); 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/290"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/290"
)
showing = res.json() Response
{
"id": 290,
"listingId": 107,
"prospectUserId": 96,
"scheduledAt": "2026-01-19T04:52:22.793Z",
"status": "scheduled",
"notes": "Possimus aggero copia utrum peior aeternus benevolentia.",
"createdAt": "2026-01-03T18:44:59.611Z"
}