showings #55
- listingId
- House in Tyshawnland · Tyshawnland
- prospectUserId
-
Jennifer Hoeger @jennifer.hoeger
- scheduledAt
- status
- scheduled
- notes
- Clamo volubilis asper video callide usus.
- createdAt
Overview
showings / #55
#55
#55
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/55" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/55" ); 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/55"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/55"
)
showing = res.json() Response
{
"id": 55,
"listingId": 18,
"prospectUserId": 119,
"scheduledAt": "2026-05-11T05:48:08.019Z",
"status": "scheduled",
"notes": "Clamo volubilis asper video callide usus.",
"createdAt": "2026-04-20T19:15:56.793Z"
}