showings #401
- listingId
- Townhouse in Gerholdstead · Gerholdstead
- prospectUserId
-
Melba Collier @melba.collier
- scheduledAt
- status
- completed
- notes
- Thema angelus umbra.
- createdAt
Overview
showings / #401
#401
#401
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/401" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/401" ); 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/401"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/401"
)
showing = res.json() Response
{
"id": 401,
"listingId": 149,
"prospectUserId": 19,
"scheduledAt": "2025-09-15T16:39:17.021Z",
"status": "completed",
"notes": "Thema angelus umbra.",
"createdAt": "2025-08-29T10:35:29.372Z"
}