showings #396
- listingId
- Townhouse in West Eldoraton · West Eldoraton
- prospectUserId
-
Kathleen Lynch @kathleen_lynch1
- scheduledAt
- status
- no_show
- notes
- Doloremque acidus socius.
- createdAt
Overview
showings / #396
#396
#396
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/396" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/396" ); 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/396"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/396"
)
showing = res.json() Response
{
"id": 396,
"listingId": 147,
"prospectUserId": 139,
"scheduledAt": "2026-05-10T12:22:52.583Z",
"status": "no_show",
"notes": "Doloremque acidus socius.",
"createdAt": "2026-05-01T14:57:41.388Z"
}