showings #193
- listingId
- House in Henderson · Henderson
- prospectUserId
-
Mara Johnson @mara.johnson17
- scheduledAt
- status
- cancelled
- notes
- Neque nesciunt usque angulus provident tres videlicet adsidue.
- createdAt
Overview
showings / #193
#193
#193
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/193" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/193" ); 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/193"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/193"
)
showing = res.json() Response
{
"id": 193,
"listingId": 71,
"prospectUserId": 12,
"scheduledAt": "2026-04-20T11:39:08.349Z",
"status": "cancelled",
"notes": "Neque nesciunt usque angulus provident tres videlicet adsidue.",
"createdAt": "2026-04-07T17:33:33.337Z"
}