showings #252
- listingId
- Condo in Lubowitzfort · Lubowitzfort
- prospectUserId
-
Telly Sanford @telly.sanford
- scheduledAt
- status
- cancelled
- notes
- Ciminatio totidem vulnus denuo volo timidus consectetur vilitas.
- createdAt
Overview
showings / #252
#252
#252
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/252" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/252" ); 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/252"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/252"
)
showing = res.json() Response
{
"id": 252,
"listingId": 95,
"prospectUserId": 123,
"scheduledAt": "2026-05-27T04:59:40.498Z",
"status": "cancelled",
"notes": "Ciminatio totidem vulnus denuo volo timidus consectetur vilitas.",
"createdAt": "2026-05-07T08:35:53.206Z"
}