showings #274
- listingId
- Apartment in Flint · Flint
- prospectUserId
-
Joseph Steuber @joseph_steuber
- scheduledAt
- status
- completed
- notes
- Tripudio ipsam explicabo.
- createdAt
Overview
showings / #274
#274
#274
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/274" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/274" ); 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/274"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/274"
)
showing = res.json() Response
{
"id": 274,
"listingId": 103,
"prospectUserId": 221,
"scheduledAt": "2026-02-09T07:14:44.911Z",
"status": "completed",
"notes": "Tripudio ipsam explicabo.",
"createdAt": "2026-02-13T10:45:15.891Z"
}