showings #91
- listingId
- Townhouse in Demariostad · Demariostad
- prospectUserId
-
Audreanne Will @audreanne_will
- scheduledAt
- status
- scheduled
- notes
- Modi amicitia tergeo nulla ago supra derelinquo stips explicabo.
- createdAt
Overview
showings / #91
#91
#91
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/91" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/91" ); 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/91"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/91"
)
showing = res.json() Response
{
"id": 91,
"listingId": 32,
"prospectUserId": 127,
"scheduledAt": "2026-02-24T03:46:30.479Z",
"status": "scheduled",
"notes": "Modi amicitia tergeo nulla ago supra derelinquo stips explicabo.",
"createdAt": "2026-02-17T02:23:39.228Z"
}