showings #45
- listingId
- House in Port Gina · Port Gina
- prospectUserId
-
Lamar Wilkinson @lamar_wilkinson43
- scheduledAt
- status
- completed
- notes
- Atrocitas totus colo bonus placeat torqueo celebrer xiphias sapiente absens.
- createdAt
Overview
showings / #45
#45
#45
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/45" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/45" ); 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/45"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/45"
)
showing = res.json() Response
{
"id": 45,
"listingId": 14,
"prospectUserId": 43,
"scheduledAt": "2025-10-13T14:25:49.344Z",
"status": "completed",
"notes": "Atrocitas totus colo bonus placeat torqueo celebrer xiphias sapiente absens.",
"createdAt": "2025-09-30T16:40:38.527Z"
}