showings #329
- listingId
- Apartment in Lake Price · Lake Price
- prospectUserId
-
Maria Senger @maria.senger
- scheduledAt
- status
- scheduled
- notes
- Pel nemo dignissimos porro cibo fuga agnitio.
- createdAt
Overview
showings / #329
#329
#329
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/329" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/329" ); 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/329"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/329"
)
showing = res.json() Response
{
"id": 329,
"listingId": 121,
"prospectUserId": 120,
"scheduledAt": "2026-05-12T05:18:50.947Z",
"status": "scheduled",
"notes": "Pel nemo dignissimos porro cibo fuga agnitio.",
"createdAt": "2026-05-02T04:34:51.044Z"
}