showings #333
- listingId
- Townhouse in Lake Imogenemouth · Lake Imogenemouth
- prospectUserId
-
Kennith Hahn @kennith.hahn
- scheduledAt
- status
- scheduled
- notes
- Sit abscido vilicus spero conculco substantia.
- createdAt
Overview
showings / #333
#333
#333
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/333" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/333" ); 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/333"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/333"
)
showing = res.json() Response
{
"id": 333,
"listingId": 122,
"prospectUserId": 201,
"scheduledAt": "2025-07-07T11:58:37.153Z",
"status": "scheduled",
"notes": "Sit abscido vilicus spero conculco substantia.",
"createdAt": "2025-06-13T02:30:55.812Z"
}