showings #265
- listingId
- House in O'Konberg · O'Konberg
- prospectUserId
-
Rosemary Krajcik @rosemary_krajcik
- scheduledAt
- status
- scheduled
- notes
- Sollers vulgo arceo corroboro.
- createdAt
Overview
showings / #265
#265
#265
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/265" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/265" ); 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/265"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/265"
)
showing = res.json() Response
{
"id": 265,
"listingId": 99,
"prospectUserId": 191,
"scheduledAt": "2025-11-02T08:50:43.094Z",
"status": "scheduled",
"notes": "Sollers vulgo arceo corroboro.",
"createdAt": "2025-10-22T09:29:05.003Z"
}