showings #13
- listingId
- Land in New Seamus · New Seamus
- prospectUserId
-
Charlene Kuhic @charlene_kuhic
- scheduledAt
- status
- scheduled
- notes
- Thymbra aurum amet benevolentia despecto tribuo tenax cursus absum amiculum.
- createdAt
Overview
showings / #13
#13
#13
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/13" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/13" ); 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/13"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/13"
)
showing = res.json() Response
{
"id": 13,
"listingId": 4,
"prospectUserId": 244,
"scheduledAt": "2026-04-12T06:06:14.666Z",
"status": "scheduled",
"notes": "Thymbra aurum amet benevolentia despecto tribuo tenax cursus absum amiculum.",
"createdAt": "2026-03-25T15:12:32.266Z"
}