Prediction feed
Daily BUY, HOLD, TAKE, and SKIP signals with horizon, confidence, price band, and anchor close. One object per asset, every market day.
One clean API for daily market predictions, calibrated price bands, and the outcome record behind every call.
The first developer program is meant for teams building investing, research, alerting, and portfolio workflows where users need a clear signal and a visible trust trail.
Daily BUY, HOLD, TAKE, and SKIP signals with horizon, confidence, price band, and anchor close. One object per asset, every market day.
Versioned outputs, feature-spec hashes, quantile crossing flags, and plain-English rationale when available. No black box.
Resolved calls with realized price, band hit, direction hit, miss size, and rolling calibration metrics. Trust is visible.
We are using the waitlist to decide which endpoints and rate limits matter first. The shape below is the intended private beta surface, not a public contract yet.
/v1/predictions/latestLatest signal and price band for one symbol or a watchlist.
/v1/markets/feedFiltered market feed by asset class, signal, horizon, or conviction.
/v1/outcomesPrediction outcomes for audits, dashboards, and model trust views.
/v1/webhooksSignal flip and daily digest events for apps that need push workflows.
curl https://api.capwise.ai/v1/predictions/latest \
-H "Authorization: Bearer $CAPWISE_API_KEY" \
-G \
--data-urlencode "symbol=NVDA" \
--data-urlencode "horizon=24h"import { Capwise } from "@capwise/sdk";
const capwise = new Capwise({
apiKey: process.env.CAPWISE_API_KEY,
});
const signal = await capwise.predictions.latest({
symbol: "AAPL",
horizon: "1w",
});
console.log(signal.verdict, signal.priceBand);The SDK should keep the boring parts small: auth headers, response typing, batching, webhook verification, and stable adapters for prediction and outcome objects.
We are collecting interest before opening API keys. Tell us whether you care most about raw prediction access, SDK ergonomics, webhooks, or historical outcomes.
No. Capwise is read-only research data. We deliver signals, price bands, and outcomes. We never touch accounts, balances, or order flow.
Predictions update daily after the US market close, with crypto updating on its own UTC cycle. Outcomes resolve once each target horizon passes.
US stocks and ETFs, TSX names, and top crypto. New tickers can be requested through the same pipeline the consumer app uses.
Yes, but the waitlist is helping us decide the right tiers. Early developer partners will get enough headroom to build and test.
The developer program starts with the same daily predictions the consumer product uses. Your feedback will decide which endpoints, SDKs, and webhooks ship first.