showings #315
- listingId
- Townhouse in Scottsdale · Scottsdale
- prospectUserId
-
Filiberto Fay @filiberto.fay59
- scheduledAt
- status
- completed
- notes
- Quidem bestia infit suscipio.
- createdAt
Overview
showings / #315
#315
#315
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/315" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/315" ); 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/315"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/315"
)
showing = res.json() Response
{
"id": 315,
"listingId": 116,
"prospectUserId": 92,
"scheduledAt": "2026-03-28T17:08:30.788Z",
"status": "completed",
"notes": "Quidem bestia infit suscipio.",
"createdAt": "2026-02-28T02:04:20.458Z"
}