showings #57
- listingId
- House in Tyshawnland · Tyshawnland
- prospectUserId
-
Rubye Emmerich @rubye.emmerich
- scheduledAt
- status
- completed
- notes
- Virgo celer angelus.
- createdAt
Overview
showings / #57
#57
#57
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/57" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/57" ); 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/57"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/57"
)
showing = res.json() Response
{
"id": 57,
"listingId": 18,
"prospectUserId": 225,
"scheduledAt": "2026-05-04T06:31:17.148Z",
"status": "completed",
"notes": "Virgo celer angelus.",
"createdAt": "2026-04-17T15:16:07.001Z"
}