showings #291
- listingId
- Condo in Williamsonhaven · Williamsonhaven
- prospectUserId
-
Cassidy Boehm @cassidy_boehm22
- scheduledAt
- status
- completed
- notes
- Textilis ubi thorax deduco.
- createdAt
Overview
showings / #291
#291
#291
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/291" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/291" ); 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/291"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/291"
)
showing = res.json() Response
{
"id": 291,
"listingId": 108,
"prospectUserId": 204,
"scheduledAt": "2025-10-29T22:55:42.212Z",
"status": "completed",
"notes": "Textilis ubi thorax deduco.",
"createdAt": "2025-10-06T06:34:20.475Z"
}