showings #431
- listingId
- Townhouse in Port Helenport · Port Helenport
- prospectUserId
-
Cayla Farrell @cayla_farrell
- scheduledAt
- status
- scheduled
- notes
- Tamisium subnecto accusamus administratio solutio talus.
- createdAt
Overview
showings / #431
#431
#431
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/431" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/431" ); 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/431"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/431"
)
showing = res.json() Response
{
"id": 431,
"listingId": 161,
"prospectUserId": 4,
"scheduledAt": "2026-04-12T13:46:54.937Z",
"status": "scheduled",
"notes": "Tamisium subnecto accusamus administratio solutio talus.",
"createdAt": "2026-04-02T11:01:20.385Z"
}