showings #184
- listingId
- Condo in Lueilwitzfield · Lueilwitzfield
- prospectUserId
-
Cyril Frami @cyril_frami88
- scheduledAt
- status
- scheduled
- notes
- Thema texo tandem arbitro trado vilis ademptio dolorum.
- createdAt
Overview
showings / #184
#184
#184
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/184" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/184" ); 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/184"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/184"
)
showing = res.json() Response
{
"id": 184,
"listingId": 68,
"prospectUserId": 182,
"scheduledAt": "2026-01-11T06:02:04.669Z",
"status": "scheduled",
"notes": "Thema texo tandem arbitro trado vilis ademptio dolorum.",
"createdAt": "2025-12-29T08:44:55.074Z"
}