showings #336
- listingId
- Land in Conncester · Conncester
- prospectUserId
-
Simeon Heathcote @simeon_heathcote75
- scheduledAt
- status
- completed
- notes
- Est laboriosam complectus.
- createdAt
Overview
showings / #336
#336
#336
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/336" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/336" ); 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/336"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/336"
)
showing = res.json() Response
{
"id": 336,
"listingId": 123,
"prospectUserId": 224,
"scheduledAt": "2025-11-07T02:53:43.143Z",
"status": "completed",
"notes": "Est laboriosam complectus.",
"createdAt": "2025-11-01T10:18:19.022Z"
}