showings #316
- listingId
- Townhouse in Scottsdale · Scottsdale
- prospectUserId
-
Webster Skiles @webster_skiles39
- scheduledAt
- status
- completed
- notes
- Creta officia tertius.
- createdAt
Overview
showings / #316
#316
#316
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/316" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/316" ); 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/316"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/316"
)
showing = res.json() Response
{
"id": 316,
"listingId": 116,
"prospectUserId": 5,
"scheduledAt": "2026-04-09T14:07:15.249Z",
"status": "completed",
"notes": "Creta officia tertius.",
"createdAt": "2026-03-20T22:28:32.349Z"
}