showings #123
- listingId
- House in Johnson City · Johnson City
- prospectUserId
-
Joseph Steuber @joseph_steuber
- scheduledAt
- status
- scheduled
- notes
- Tertius assumenda virgo volaticus blandior cumque dicta vitium.
- createdAt
Overview
showings / #123
#123
#123
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/123" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/123" ); 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/123"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/123"
)
showing = res.json() Response
{
"id": 123,
"listingId": 45,
"prospectUserId": 221,
"scheduledAt": "2026-04-27T13:57:27.559Z",
"status": "scheduled",
"notes": "Tertius assumenda virgo volaticus blandior cumque dicta vitium.",
"createdAt": "2026-04-30T05:15:50.692Z"
}