showings #124
- listingId
- House in Duluth · Duluth
- prospectUserId
-
Ricky Langosh @ricky.langosh66
- scheduledAt
- status
- completed
- notes
- Porro vito tergum sol votum vox urbs depopulo a thalassinus.
- createdAt
Overview
showings / #124
#124
#124
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/124" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/124" ); 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/124"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/124"
)
showing = res.json() Response
{
"id": 124,
"listingId": 46,
"prospectUserId": 198,
"scheduledAt": "2026-05-04T07:07:25.475Z",
"status": "completed",
"notes": "Porro vito tergum sol votum vox urbs depopulo a thalassinus.",
"createdAt": "2026-05-06T16:48:03.435Z"
}