showings #28
- listingId
- Townhouse in Rapid City · Rapid City
- prospectUserId
-
Kevon Dickinson @kevon.dickinson
- scheduledAt
- status
- scheduled
- notes
- Civis demoror audentia arca adipiscor.
- createdAt
Overview
showings / #28
#28
#28
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/28" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/28" ); 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/28"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/28"
)
showing = res.json() Response
{
"id": 28,
"listingId": 8,
"prospectUserId": 218,
"scheduledAt": "2026-05-18T14:54:13.248Z",
"status": "scheduled",
"notes": "Civis demoror audentia arca adipiscor.",
"createdAt": "2026-04-29T06:25:34.785Z"
}