showings #307
- listingId
- Condo in Grantburgh · Grantburgh
- prospectUserId
-
Orrin Grant @orrin.grant42
- scheduledAt
- status
- completed
- notes
- Tertius nisi crepusculum comburo admoveo comparo cito.
- createdAt
Overview
showings / #307
#307
#307
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/307" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/307" ); 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/307"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/307"
)
showing = res.json() Response
{
"id": 307,
"listingId": 113,
"prospectUserId": 152,
"scheduledAt": "2026-03-29T06:33:40.741Z",
"status": "completed",
"notes": "Tertius nisi crepusculum comburo admoveo comparo cito.",
"createdAt": "2026-03-07T07:54:24.150Z"
}