showings #77
- listingId
- Condo in South Rudolphville · South Rudolphville
- prospectUserId
-
Niko Wisozk @niko_wisozk
- scheduledAt
- status
- completed
- notes
- Coniuratio ulciscor villa aiunt inflammatio.
- createdAt
Overview
showings / #77
#77
#77
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/77" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/77" ); 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/77"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/77"
)
showing = res.json() Response
{
"id": 77,
"listingId": 27,
"prospectUserId": 56,
"scheduledAt": "2026-02-27T09:09:19.088Z",
"status": "completed",
"notes": "Coniuratio ulciscor villa aiunt inflammatio.",
"createdAt": "2026-01-31T01:09:11.824Z"
}