showings #453
- listingId
- House in Stromanhaven · Stromanhaven
- prospectUserId
-
Melba Collier @melba.collier
- scheduledAt
- status
- scheduled
- notes
- Sufficio rerum assumenda aer varietas.
- createdAt
Overview
showings / #453
#453
#453
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/453" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/453" ); 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/453"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/453"
)
showing = res.json() Response
{
"id": 453,
"listingId": 171,
"prospectUserId": 19,
"scheduledAt": "2026-02-23T14:35:20.581Z",
"status": "scheduled",
"notes": "Sufficio rerum assumenda aer varietas.",
"createdAt": "2026-02-04T11:51:00.718Z"
}