showings #273
- listingId
- Apartment in Abelardoland · Abelardoland
- prospectUserId
-
D'angelo Kling @dangelo_kling6
- scheduledAt
- status
- completed
- notes
- Sumo molestias viridis.
- createdAt
Overview
showings / #273
#273
#273
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/273" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/273" ); 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/273"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/273"
)
showing = res.json() Response
{
"id": 273,
"listingId": 102,
"prospectUserId": 188,
"scheduledAt": "2025-07-31T09:12:51.716Z",
"status": "completed",
"notes": "Sumo molestias viridis.",
"createdAt": "2025-07-27T20:34:58.981Z"
}