showings #320
- listingId
- Condo in Uptonstad · Uptonstad
- prospectUserId
-
Mckenna Hegmann-Price @mckenna.hegmann-price77
- scheduledAt
- status
- cancelled
- notes
- Atrocitas aspicio custodia curatio corrupti quae corroboro conitor combibo.
- createdAt
Overview
showings / #320
#320
#320
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/320" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/320" ); 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/320"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/320"
)
showing = res.json() Response
{
"id": 320,
"listingId": 118,
"prospectUserId": 62,
"scheduledAt": "2026-04-15T15:22:38.269Z",
"status": "cancelled",
"notes": "Atrocitas aspicio custodia curatio corrupti quae corroboro conitor combibo.",
"createdAt": "2026-04-10T05:24:15.389Z"
}