showings #59
- listingId
- Land in Gerlachshire · Gerlachshire
- prospectUserId
-
Selina Flatley @selina_flatley
- scheduledAt
- status
- completed
- notes
- Eveniet commemoro avarus uxor canonicus cinis auditor culpo victoria.
- createdAt
Overview
showings / #59
#59
#59
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/59" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/59" ); 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/59"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/59"
)
showing = res.json() Response
{
"id": 59,
"listingId": 19,
"prospectUserId": 193,
"scheduledAt": "2026-06-01T21:09:32.430Z",
"status": "completed",
"notes": "Eveniet commemoro avarus uxor canonicus cinis auditor culpo victoria.",
"createdAt": "2026-05-13T22:59:31.173Z"
}