# Algo Tick — Crypto Market Intelligence API # https://algotick.dev # Last updated: 2026-03-12 ## Overview Algo Tick provides real-time crypto market intelligence via a REST API. All endpoints return JSON. Authentication via `api_key` query parameter. Base URL: https://algotick.dev ## Endpoints ### Market Snapshot GET /v1/snapshot?api_key=KEY Returns 39 real-time metrics including prices, funding rates, gas fees, and alpha signals. ### Volatility GET /v1/signals/volatility?coin=BTC&api_key=KEY Returns realized volatility (1h, 4h, 24h), mark price, and volatility regime. Coins: BTC, ETH, SOL, HYPE ### Spreads & Funding GET /v1/signals/spreads?coin=BTC&api_key=KEY Returns cross-venue spread (bps), funding rate, funding Z-score, mark price, and regime. ### Composite Signal GET /v1/signals/composite?api_key=KEY Returns multi-factor composite trading signal per coin: score (-1 to +1), regime, components. ### Market Regime GET /v3/signals/regime?api_key=KEY Returns HMM-based regime classification: regime_label, confidence_score, vol_24h, risk_warnings. ### Whale Flow GET /v1/signals/whale-flow?coin=BTC&api_key=KEY Returns whale orders (>$100K), whale_imbalance (-1 to +1), total_whale_bid_usd, total_whale_ask_usd. ### Order Book Depth GET /v1/signals/depth?coin=BTC&api_key=KEY Returns depth bands with bid/ask depth at each percentage level from mid price. ### Correlation Matrix GET /v1/signals/correlation?api_key=KEY Returns cross-asset correlation matrix and pair correlations. ### Squeeze Detection GET /v3/signals/squeeze?api_key=KEY Returns squeeze probability (%), direction, OI velocity, risk level per coin. ### Arbitrage GET /v3/signals/arbitrage?api_key=KEY Returns arbitrage opportunities: spread_bps, annualized_yield, direction, best_opportunity. ### Smart Money GET /v3/signals/smart-money?api_key=KEY Returns tracked wallet activity: aggregate_signal, net_flow_usd_24h, hottest_coins, wallet details. ### Safety GET /v3/signals/safety?api_key=KEY Returns cross-signal coherence: coherence_score (0-100), safety_level, recommendation. ### Liquidations GET /v1/signals/liquidations?coin=BTC&api_key=KEY Returns active liquidation alerts and threshold levels. ### Gas Tracker GET /v1/signals/priority-gas?api_key=KEY Returns Ethereum gas prices: current_basefee, p25, p50, p90, congestion_level. ### Imbalance GET /v1/signals/imbalance?coin=BTC&api_key=KEY Returns order book imbalance score and signal direction. ### Historical Analytics GET /v3/analytics/query?metric=METRIC&coin=COIN&hours=24&api_key=KEY Returns historical time-series data from ClickHouse for backtesting. ## Developer Resources - Interactive docs: https://algotick.dev/docs - Code templates: https://algotick.dev/templates - Strategy guides: https://algotick.dev/alpha - Backtests: https://algotick.dev/backtests - Glossary: https://algotick.dev/glossary ## Supported Frameworks - Python (requests, asyncio) - TypeScript (node-fetch, React) - ElizaOS (Agent framework) - LangChain (AI agent tools) ## MCP Server This API can be used as an MCP (Model Context Protocol) server for AI agents. Each endpoint returns structured JSON that can be directly consumed by LLM tool-calling interfaces.