showings #78
- listingId
- Condo in South Rudolphville · South Rudolphville
- prospectUserId
-
Aylin Sanford @aylin.sanford
- scheduledAt
- status
- completed
- notes
- Aestivus aperte comitatus vox aestus versus articulus sum acsi.
- createdAt
Overview
showings / #78
#78
#78
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/78" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/78" ); 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/78"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/78"
)
showing = res.json() Response
{
"id": 78,
"listingId": 27,
"prospectUserId": 173,
"scheduledAt": "2025-10-29T09:17:41.110Z",
"status": "completed",
"notes": "Aestivus aperte comitatus vox aestus versus articulus sum acsi.",
"createdAt": "2025-10-23T12:23:02.718Z"
}