showings #244
- listingId
- Commercial Space in Yorba Linda · Yorba Linda
- prospectUserId
-
Gerald Lind @gerald_lind57
- scheduledAt
- status
- completed
- notes
- Una deficio adaugeo tactus maxime cilicium.
- createdAt
Overview
showings / #244
#244
#244
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/244" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/244" ); 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/244"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/244"
)
showing = res.json() Response
{
"id": 244,
"listingId": 92,
"prospectUserId": 179,
"scheduledAt": "2026-03-12T11:05:27.402Z",
"status": "completed",
"notes": "Una deficio adaugeo tactus maxime cilicium.",
"createdAt": "2026-02-16T02:40:31.008Z"
}