showings #465
- listingId
- House in Port Marciastad · Port Marciastad
- prospectUserId
-
Ari Howe @ari.howe73
- scheduledAt
- status
- completed
- notes
- Eaque vis adiuvo.
- createdAt
Overview
showings / #465
#465
#465
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/465" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/465" ); 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/465"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/465"
)
showing = res.json() Response
{
"id": 465,
"listingId": 176,
"prospectUserId": 167,
"scheduledAt": "2026-03-24T17:47:47.222Z",
"status": "completed",
"notes": "Eaque vis adiuvo.",
"createdAt": "2026-03-22T07:35:24.470Z"
}