showings #134
- listingId
- House in Yorba Linda · Yorba Linda
- prospectUserId
-
Sonia Nolan @sonia_nolan
- scheduledAt
- status
- scheduled
- notes
- Templum astrum vinculum tollo.
- createdAt
Overview
showings / #134
#134
#134
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/134" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/134" ); 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/134"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/134"
)
showing = res.json() Response
{
"id": 134,
"listingId": 50,
"prospectUserId": 208,
"scheduledAt": "2026-05-13T17:14:14.006Z",
"status": "scheduled",
"notes": "Templum astrum vinculum tollo.",
"createdAt": "2026-04-15T19:18:33.547Z"
}