showings #341
- listingId
- Townhouse in West Maya · West Maya
- prospectUserId
-
Era Mitchell @era.mitchell21
- scheduledAt
- status
- cancelled
- notes
- Combibo tui venustas odio tersus auxilium acsi.
- createdAt
Overview
showings / #341
#341
#341
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/341" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/341" ); 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/341"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/341"
)
showing = res.json() Response
{
"id": 341,
"listingId": 125,
"prospectUserId": 243,
"scheduledAt": "2025-05-10T05:44:07.347Z",
"status": "cancelled",
"notes": "Combibo tui venustas odio tersus auxilium acsi.",
"createdAt": "2025-04-25T17:10:20.363Z"
}