showings #445
- listingId
- Apartment in Fort Javonte · Fort Javonte
- prospectUserId
-
Lenny Howe @lenny.howe
- scheduledAt
- status
- completed
- notes
- Constans votum est auctus vox adstringo chirographum aeneus possimus subvenio.
- createdAt
Overview
showings / #445
#445
#445
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/445" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/445" ); 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/445"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/445"
)
showing = res.json() Response
{
"id": 445,
"listingId": 166,
"prospectUserId": 37,
"scheduledAt": "2025-08-14T00:13:08.542Z",
"status": "completed",
"notes": "Constans votum est auctus vox adstringo chirographum aeneus possimus subvenio.",
"createdAt": "2025-08-14T14:41:48.749Z"
}