showings #388
- listingId
- Condo in Lydaworth · Lydaworth
- prospectUserId
-
Aaron Fritsch @aaron.fritsch
- scheduledAt
- status
- completed
- notes
- Vallum unde sollers absum civis admoveo cubitum deorsum trucido bos.
- createdAt
Overview
showings / #388
#388
#388
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/388" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/388" ); 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/388"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/388"
)
showing = res.json() Response
{
"id": 388,
"listingId": 144,
"prospectUserId": 124,
"scheduledAt": "2026-05-22T16:51:25.210Z",
"status": "completed",
"notes": "Vallum unde sollers absum civis admoveo cubitum deorsum trucido bos.",
"createdAt": "2026-05-21T07:01:06.919Z"
}