showings #27
- listingId
- Townhouse in Rapid City · Rapid City
- prospectUserId
-
Ethyl Auer @ethyl_auer89
- scheduledAt
- status
- scheduled
- notes
- Sulum ago adulescens agnitio curiositas talus vester adulatio.
- createdAt
Overview
showings / #27
#27
#27
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/27" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/27" ); 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/27"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/27"
)
showing = res.json() Response
{
"id": 27,
"listingId": 8,
"prospectUserId": 95,
"scheduledAt": "2026-04-24T02:31:17.000Z",
"status": "scheduled",
"notes": "Sulum ago adulescens agnitio curiositas talus vester adulatio.",
"createdAt": "2026-04-25T07:37:47.285Z"
}