showings #464
- listingId
- Townhouse in Fort Dan · Fort Dan
- prospectUserId
-
Karlee Hudson-Turner @karlee.hudson-turner88
- scheduledAt
- status
- completed
- notes
- Eos turbo cultura inventore curvo aureus absum.
- createdAt
Overview
showings / #464
#464
#464
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/464" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/464" ); 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/464"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/464"
)
showing = res.json() Response
{
"id": 464,
"listingId": 175,
"prospectUserId": 36,
"scheduledAt": "2026-02-23T21:11:27.464Z",
"status": "completed",
"notes": "Eos turbo cultura inventore curvo aureus absum.",
"createdAt": "2026-02-17T16:01:22.150Z"
}