Documentation
Build with Caladrius.
Everything you need to integrate the AI operating system for prediction markets — guides, API reference, and explainable decisions.
K
v2.4.0REST · TypeScript SDKSolana · $CADR
Explore the docs
Pick a track — each section is self-contained and links to deeper references.
Quick start
Install, authenticate, and get your first explainable decision in three calls.
quickstart.ts
1import { Caladrius } from "@caladrius/sdk";23const cadr = new Caladrius({ apiKey: process.env.CADR_KEY });45// Ask the AI for an explainable, event-based decision6const decision = await cadr.predict({7 market: "BTC-above-100k-by-eoy",8 horizon: "30d",9});1011console.log(decision.confidence); // 0.7112console.log(decision.rationale); // "Momentum + on-chain flows..."Recent updates
What shipped lately across the platform and API.
- v2.4.0Jun 28, 2026
Streaming predictions endpoint
FeatureSubscribe to live confidence shifts as new signals arrive, with sub-second deltas.
- v2.3.1Jun 21, 2026
Explainability traces v2
ImprovementEvery decision now returns a weighted evidence graph alongside the rationale.
- v2.3.0Jun 12, 2026
Webhook signing keys
FeatureVerify webhook authenticity with rotating HMAC signatures per workspace.
- v2.2.4Jun 03, 2026
Lower latency on cold markets
FixResolved a caching edge case that delayed first queries on newly listed markets.
