showings #8
- listingId
- House in New Otiliatown · New Otiliatown
- prospectUserId
-
Michale Hilpert @michale_hilpert62
- scheduledAt
- status
- cancelled
- notes
- Credo itaque cedo trepide quod arbitro canto aliquid cupiditas suffoco.
- createdAt
Overview
showings / #8
#8
#8
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/8" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/8" ); 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/8"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/8"
)
showing = res.json() Response
{
"id": 8,
"listingId": 2,
"prospectUserId": 250,
"scheduledAt": "2026-05-06T04:18:22.887Z",
"status": "cancelled",
"notes": "Credo itaque cedo trepide quod arbitro canto aliquid cupiditas suffoco.",
"createdAt": "2026-04-21T14:05:56.014Z"
}