showings #117
- listingId
- House in West Janet · West Janet
- prospectUserId
-
Norbert Jacobi @norbert_jacobi92
- scheduledAt
- status
- completed
- notes
- Velut adamo est commodi.
- createdAt
Overview
showings / #117
#117
#117
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/117" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/117" ); 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/117"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/117"
)
showing = res.json() Response
{
"id": 117,
"listingId": 43,
"prospectUserId": 101,
"scheduledAt": "2025-10-11T15:52:26.232Z",
"status": "completed",
"notes": "Velut adamo est commodi.",
"createdAt": "2025-10-02T10:10:53.945Z"
}