showings #178
- listingId
- House in East Eleazar · East Eleazar
- prospectUserId
-
Ryan Conroy @ryan_conroy
- scheduledAt
- status
- cancelled
- notes
- Voluptatibus vulgus callide dolores debeo cito alveus tot.
- createdAt
Overview
showings / #178
#178
#178
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/178" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/178" ); 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/178"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/178"
)
showing = res.json() Response
{
"id": 178,
"listingId": 65,
"prospectUserId": 73,
"scheduledAt": "2026-05-08T15:28:43.958Z",
"status": "cancelled",
"notes": "Voluptatibus vulgus callide dolores debeo cito alveus tot.",
"createdAt": "2026-05-10T00:37:08.815Z"
}