showings #482
- listingId
- Townhouse in North Angelicaview · North Angelicaview
- prospectUserId
-
Alex Lang @alex_lang85
- scheduledAt
- status
- cancelled
- notes
- Colligo deprimo coepi summisse talus cicuta copiose certe.
- createdAt
Overview
showings / #482
#482
#482
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/482" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/482" ); 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/482"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/482"
)
showing = res.json() Response
{
"id": 482,
"listingId": 182,
"prospectUserId": 163,
"scheduledAt": "2025-09-02T05:16:16.059Z",
"status": "cancelled",
"notes": "Colligo deprimo coepi summisse talus cicuta copiose certe.",
"createdAt": "2025-09-03T16:14:24.192Z"
}