showings #354
- listingId
- Townhouse in Lake Velvaland · Lake Velvaland
- prospectUserId
-
Britney Haag @britney.haag
- scheduledAt
- status
- completed
- notes
- Dolorem compono suppellex dicta surculus.
- createdAt
Overview
showings / #354
#354
#354
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/354" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/354" ); 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/354"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/354"
)
showing = res.json() Response
{
"id": 354,
"listingId": 130,
"prospectUserId": 133,
"scheduledAt": "2026-05-02T12:13:01.878Z",
"status": "completed",
"notes": "Dolorem compono suppellex dicta surculus.",
"createdAt": "2026-04-25T20:57:48.651Z"
}