showings #463
- listingId
- Townhouse in Fort Dan · Fort Dan
- prospectUserId
-
Stephan Heller @stephan.heller
- scheduledAt
- status
- scheduled
- notes
- Vesper arbustum crapula solio depromo carbo vehemens succurro.
- createdAt
Overview
showings / #463
#463
#463
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/463" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/463" ); 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/463"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/463"
)
showing = res.json() Response
{
"id": 463,
"listingId": 175,
"prospectUserId": 82,
"scheduledAt": "2025-05-15T17:59:31.587Z",
"status": "scheduled",
"notes": "Vesper arbustum crapula solio depromo carbo vehemens succurro.",
"createdAt": "2025-05-07T22:56:34.839Z"
}