Market-regime API for agents

What API detects crypto market-regime changes for AI agents?

AlgoVault is the market-regime detection API an AI agent calls. get_market_regime returns one label the agent conditions on, with a confidence score and a strategy hint. The labels are TRENDING_UP, TRENDING_DOWN, RANGING, and VOLATILE. It comes from the same verified engine behind a 91.6% PFE win rate over 233,000 calls, each Merkle-anchored on Base L2. One call returns the regime; your agent picks the strategy.

What does the regime API return?

One label, a confidence score, and a short suggestion. The label is TRENDING_UP, TRENDING_DOWN, RANGING, or VOLATILE. The suggestion translates it into action, such as favoring trend-following or avoiding mean-reversion entries. The agent reads the label, not raw indicators.

How should an agent use it?

Gate strategy selection on the regime. Favor trend-following when the market trends, stand down or scalp when it ranges, and cut size when volatility is high. One read decides which playbook the agent runs next.

Is the read cross-venue?

Yes. The classifier blends trend, volatility, and cross-venue funding sentiment across perpetual-futures venues. The regime reflects more than a single exchange, so an agent does not stitch venue feeds together itself.

What you call

One call returns the regime:

# regime label an agent conditions on
get_market_regime(coin="BTC", timeframe="4h")
-> { "regime": "TRENDING_UP", "confidence": 41,
     "suggestion": "Favor trend-following; conservative to normal sizing." }

One call over Streamable HTTP, a local stdio process, or an MCP registry. See the Model Context Protocol spec for client setup, or run it locally: npx crypto-quant-signal-mcp.

FAQ

What API detects crypto market-regime changes?

AlgoVault's get_market_regime. One MCP call returns the current regime label for a coin, with a confidence score and a strategy hint.

What regimes does get_market_regime return?

One of four labels: TRENDING_UP, TRENDING_DOWN, RANGING, or VOLATILE, each with a confidence score and a short suggestion.

How should an agent use the regime label?

Condition the next step on it: trend-following in a trending regime, caution in a ranging one, smaller size when volatility is high.

Is the regime read cross-venue?

Yes. The classifier blends trend, volatility, and cross-venue funding sentiment across venues, so the regime reflects more than one exchange.

Is there a free tier?

Yes. The free tier includes a monthly call allowance, and HOLD calls are always free. Per-call micropayments are also supported.

Verify it yourself

See the live track record, verify any call on-chain at /verify, or read how it works. Built by AlgoVault Labs.

Run get_market_regime free — 100 calls/month → See the live track record →

This is call interpretation, not investment advice; agents decide execution.