showings #89
- listingId
- Apartment in Gloverstad · Gloverstad
- prospectUserId
-
Carroll Wisozk @carroll_wisozk
- scheduledAt
- status
- scheduled
- notes
- Surculus umquam bonus.
- createdAt
Overview
showings / #89
#89
#89
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/89" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/89" ); 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/89"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/89"
)
showing = res.json() Response
{
"id": 89,
"listingId": 31,
"prospectUserId": 210,
"scheduledAt": "2026-06-09T09:38:09.953Z",
"status": "scheduled",
"notes": "Surculus umquam bonus.",
"createdAt": "2026-05-21T05:33:05.864Z"
}