showings #190
- listingId
- Condo in New Busterworth · New Busterworth
- prospectUserId
-
Zachariah Herzog @zachariah_herzog42
- scheduledAt
- status
- completed
- notes
- Caute debitis eum mollitia adopto decerno vigor voluptates.
- createdAt
Overview
showings / #190
#190
#190
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/190" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/190" ); 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/190"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/190"
)
showing = res.json() Response
{
"id": 190,
"listingId": 70,
"prospectUserId": 15,
"scheduledAt": "2026-05-18T12:18:36.993Z",
"status": "completed",
"notes": "Caute debitis eum mollitia adopto decerno vigor voluptates.",
"createdAt": "2026-05-02T12:19:41.514Z"
}