showings #29
- listingId
- House in Nickolasbury · Nickolasbury
- prospectUserId
-
Joseph Nitzsche @joseph_nitzsche
- scheduledAt
- status
- scheduled
- notes
- Aspernatur tamquam tutis defaeco usus reprehenderit blandior.
- createdAt
Overview
showings / #29
#29
#29
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/29" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/29" ); 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/29"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/29"
)
showing = res.json() Response
{
"id": 29,
"listingId": 9,
"prospectUserId": 196,
"scheduledAt": "2026-05-09T00:46:59.383Z",
"status": "scheduled",
"notes": "Aspernatur tamquam tutis defaeco usus reprehenderit blandior.",
"createdAt": "2026-05-01T23:11:38.079Z"
}