Algo Tick API
Institutional-grade crypto market intelligence. Sub-millisecond response times. 16 real-time endpoints. 39 metrics. 4 assets. No API key required.
Quick Start
# No API key required. Rate limit: 60 req/min per IP. # 1. Market snapshot — 39 real-time metrics curl https://algotick.dev/v1/snapshot # 2. Bitcoin composite trading signal curl https://algotick.dev/v1/signals/composite # 3. Market regime (HMM classification) curl https://algotick.dev/v3/signals/regime # 4. Whale flow for any coin curl https://algotick.dev/v1/signals/whale-flow?coin=BTC
All Endpoints
| Method | Endpoint | Description |
|---|---|---|
GET | /v1/snapshot | Real-time market snapshot with 39 metrics |
GET | /v1/signals/volatility | Realized volatility and regime per coin |
GET | /v1/signals/spreads | Cross-venue spreads and funding rates |
GET | /v1/signals/composite | Multi-factor composite trading signal |
GET | /v1/signals/correlation | Cross-asset correlation matrix |
GET | /v1/signals/whale-flow | Whale order flow and imbalance |
GET | /v1/signals/depth | Order book depth bands |
GET | /v1/signals/imbalance | Order book bid/ask imbalance |
GET | /v1/signals/liquidations | Liquidation alerts and thresholds |
GET | /v1/signals/priority-gas | Ethereum gas prices and congestion |
GET | /v3/signals/regime | HMM market regime classification |
GET | /v3/signals/squeeze | Short squeeze probability and direction |
GET | /v3/signals/arbitrage | Arbitrage opportunities and yields |
GET | /v3/signals/smart-money | Smart money wallet tracking |
GET | /v3/signals/safety | Cross-signal coherence and safety |
GET | /v3/analytics/query | Historical data query (ClickHouse) |
Python SDK
import requests # Initialize BASE = "https://algotick.dev" # Get all signals in one call (no API key required) def get_signals(): endpoints = [ "/v1/signals/composite", "/v3/signals/regime", "/v3/signals/safety", ] results = {} for ep in endpoints: resp = requests.get(f"{BASE}{ep}") results[ep] = resp.json() return results signals = get_signals() print(signals)
Features
Response Time
<1ms
Sub-millisecond API responses
Endpoints
16
Covering all major signal types
Update Frequency
60s
Real-time sensor network data
Assets Tracked
4
BTC, ETH, SOL, HYPE
Metrics
39+
Snapshot, signals, analytics
Uptime
99.9%
Frankfurt & Mumbai infrastructure
Use Cases
🤖 Trading Bots
Automated Trading
Build algorithmic strategies using composite signals, regime detection, and whale flow data.
See code templates →
📊 Dashboards
Custom Analytics
Power internal dashboards with real-time market data, correlations, and risk metrics.
React template →
🧠 AI Agents
LLM Integration
Connect market intelligence to ElizaOS, LangChain, or custom AI agents.
LangChain template →