showings #56
- listingId
- House in Tyshawnland · Tyshawnland
- prospectUserId
-
Ricky Langosh @ricky.langosh66
- scheduledAt
- status
- completed
- notes
- Bibo absens ex credo carbo patior.
- createdAt
Overview
showings / #56
#56
#56
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/56" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/56" ); 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/56"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/56"
)
showing = res.json() Response
{
"id": 56,
"listingId": 18,
"prospectUserId": 198,
"scheduledAt": "2026-02-12T05:17:40.460Z",
"status": "completed",
"notes": "Bibo absens ex credo carbo patior.",
"createdAt": "2026-02-08T07:22:24.222Z"
}