CaladriusCaladrius
Documentation

Build with Caladrius.

Everything you need to integrate the AI operating system for prediction markets — guides, API reference, and explainable decisions.

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";
2
3const cadr = new Caladrius({ apiKey: process.env.CADR_KEY });
4
5// Ask the AI for an explainable, event-based decision
6const decision = await cadr.predict({
7 market: "BTC-above-100k-by-eoy",
8 horizon: "30d",
9});
10
11console.log(decision.confidence); // 0.71
12console.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

    Feature

    Subscribe to live confidence shifts as new signals arrive, with sub-second deltas.

  • v2.3.1Jun 21, 2026

    Explainability traces v2

    Improvement

    Every decision now returns a weighted evidence graph alongside the rationale.

  • v2.3.0Jun 12, 2026

    Webhook signing keys

    Feature

    Verify webhook authenticity with rotating HMAC signatures per workspace.

  • v2.2.4Jun 03, 2026

    Lower latency on cold markets

    Fix

    Resolved a caching edge case that delayed first queries on newly listed markets.

View full changelog

Can't find what you need?

Browse the FAQ or reach the team — we usually reply within a day.