showings #384
- listingId
- House in Marquardtstead · Marquardtstead
- prospectUserId
-
Leonor Corwin @leonor_corwin3
- scheduledAt
- status
- completed
- notes
- Ullam tutamen repellendus.
- createdAt
Overview
showings / #384
#384
#384
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/384" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/384" ); 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/384"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/384"
)
showing = res.json() Response
{
"id": 384,
"listingId": 142,
"prospectUserId": 211,
"scheduledAt": "2025-08-15T22:35:27.996Z",
"status": "completed",
"notes": "Ullam tutamen repellendus.",
"createdAt": "2025-07-23T17:51:49.242Z"
}