Bring Sovarion signals into your own workflow.
Customer API keys expose the same permission-gated data surfaces used by the app: active opportunity signals, forecasts, live market context, classified news and proof metrics. They are built for read-only decision systems: scoped, rate-limited, hashed at rest and shown only once at creation.
One header. Scoped access.
Request format
curl "https://api.sovarion.ai/v1/opportunities?forecast_only=true" \ -H "X-API-Key: qk_your_key_here"
Rate limit
New Sovarion One keys receive a daily request budget and return X-RateLimit-Limit, X-RateLimit-Remaining and X-RateLimit-Reset headers. Usage is visible inside Account → API Keys.
Use the trade_signal contract.
Every active opportunity can include a machine-readable trade_signal. It gives external AI systems the entry anchor, target, live progress, remaining time, confidence, quality score, invalidation level and market/news context needed to evaluate a setup. Sovarion does not send order instructions, position sizes or broker commands.
{
"asset": "bayn",
"symbol": "BAYN",
"forecast": {
"direction": "BULLISH",
"pct_change_expected": 2.84,
"current_price": 38.05,
"progress_to_target_pct": -31.2
},
"trade_signal": {
"signal_id": "sig_bayn_202605040939262700",
"product": "day_trade",
"side": "long",
"entry_price": 38.39,
"entry_time": "2026-05-04 09:39:26.27+00",
"entry_day_change_pct": 0.89,
"target_price": 39.48,
"target_day_change_pct": 3.73,
"expected_move_pct": 2.84,
"min_expected_move_pct": 2.5,
"current_price": 38.05,
"time_remaining_seconds": 5057,
"confidence": 63,
"quality_score": 83,
"invalidation_price": 37.70,
"not_execution_instruction": true
}
}Streaming integration
curl -N "https://api.sovarion.ai/v1/opportunities/stream?payload=full&forecast_only=true" \ -H "Authorization: Bearer qk_your_key_here"
Browser EventSource cannot set private headers. Customer apps should open this stream from their own backend or proxy and keep API keys out of URLs and client-side code.
Give every integration only what it needs.
Read currently visible day-trading opportunities.
Read latest forecasts and forecast details.
Read market universe, asset metadata, quotes and candles.
Read classified market news and asset-impact context.
Read resolved forecasts and outcome rows.
Read aggregate hit-rate and proof metrics.
The API is designed for consumption, not trade execution.
/v1/opportunities?forecast_only=trueCurrent active day-trading opportunities with trade_signal./v1/opportunities/stream?payload=full&forecast_only=trueFull live snapshot stream for customer systems./v1/forecasts/latest?horizon=30minLatest forecast feed./v1/markets/universeScanner universe and asset metadata./v1/markets/{asset}/candles?interval=5&count=120Chart candles for an asset./v1/news?asset=nvda&sort=importanceNews impact for one asset./v1/forecasts/archive?horizon=day_tradingResolved forecast archive./v1/forecasts/accuracy?horizon=day_tradingProof and hit-rate summary.