API Reference
All endpoints use the base URL https://getsigna.ai. Authenticate with Authorization: Bearer YOUR_API_KEY.
Authorization: Bearer cmts_a1b2c3d4e5f6...
Get your API key at Dashboard → API Keys. The /health endpoint does not require authentication.
/api/v1/quote/:symbolFreeReturns a real-time price quote for any stock, ETF, or crypto symbol.
{
"ok": true,
"symbol": "AAPL",
"data": {
"price": 178.23,
"change": 2.45,
"changePercent": 1.39,
"volume": 54382910,
"high": 179.10,
"low": 176.80,
"open": 177.00,
"source": "signa",
"timestamp": "2026-03-31T16:00:00Z"
}
}/api/v1/healthFreeReturns the health status of all data providers. No authentication required.
{
"ok": true,
"status": "healthy",
"providers": [
{ "name": "Signa Market Data", "healthy": true, "latency_ms": 42 }
],
"meta": {
"api_version": "v1",
"engine_version": "2.0",
"checked_at": "2026-03-31T16:00:00Z"
}
}/api/v1/signal?sym=:symbolProReturns the full Signa Action Card for a symbol — bias, Weinstein stage, confidence, triggers, entry/stop/target, and all technical indicator values.
/api/v1/history/:symbolProReturns historical OHLCV candle data. Supports daily, 4h, 1h, and intraday timeframes. Up to 500 bars.
/api/v1/scanProScan multiple symbols simultaneously and return results ranked by signal score. Filter by tier (HOT/WATCH/NEUTRAL) and minimum score.
/api/v1/screenerProAdvanced screener with full Action Card data for each symbol. Returns a ranked list sorted by overall score.
/api/v1/analysis?sym=:symbolProReturns extended analysis including chart patterns, market opportunities, sentiment context, and full technical data.
/api/v1/backtestEnterpriseRun Monte Carlo backtests on any strategy using historical Signa signals. Returns probability of ruin, expected return, and outcome distribution.
/api/v1/index/signaEnterpriseThe Signa Signal Index — a composite market-wide sentiment and signal strength score updated in real-time.
/api/v1/a2a/routeEnterpriseAgent-to-Agent routing endpoint. Allows AI agents to request signals, analysis, and execution recommendations in a structured agent protocol format.