01
Market Health Score
FREE
whole market
A single, at-a-glance read on the state of the crypto market: a dual-score system that grades both the long-term backdrop and the short-term tape on a 0–100 scale, each with a plain-language sentiment label from extreme fear to extreme greed.
WHAT YOU GET
- Combined score — one 0–100 number with a sentiment state (extreme fear → extreme greed).
- Long-term & short-term sub-scores — the structural backdrop vs. the near-term tape, scored separately.
- Component breakdown — the individual price, derivatives, breadth and sentiment inputs behind each score.
- History — the score over time, for trend and divergence checks.
ENDPOINTS
GET/market-health/summary
scores + sentiment
GET/market-health/components
full breakdown
GET/market-health/history
score over time
EXAMPLE — CURRENT SCORES & SENTIMENT
curl "https://cryptodataapi.com/api/v1/market-health/summary" \
-H "X-API-Key: cdk_live_your_key"
02
Long-term Market Regimes
FREE
whole market
A long-horizon market-cycle model that places the market in one of 10 named regimes — from structural shock and established bear through accumulation, BTC-led and broadening bull markets, to speculative euphoria and post-peak distribution — with the live classification and the evidence behind it.
WHAT YOU GET
- Current regime — the live state with a human-readable rationale.
- Inspectable signals — the underlying conditions that drove the classification, so it's auditable, not a black box.
- Full taxonomy — all 10 regimes with display name, typical duration and directional bias.
- Stage detail — e.g. distribution stage or a euphoria score where applicable.
ENDPOINTS
GET/regimes
taxonomy + current
GET/regimes/current
live state only
EXAMPLE — THE CURRENT LONG-HORIZON REGIME
curl "https://cryptodataapi.com/api/v1/regimes/current" \
-H "X-API-Key: cdk_live_your_key"
03
Crypto Market Regimes (Short-term)
PRO
market + per-coin
A Hidden Markov Model engine that filters a calibrated posterior probability over 6 market regimes — strong-trend bull, strong-trend bear, range / low-vol, choppy / high-vol, vol-spike and squeeze — rather than a single hard label, so you can size and gate by conviction. It runs whole-market and per-coin, and ships probability buckets for direction, volatility, liquidation risk, funding, breadth and regime transitions.
WHAT YOU GET
- Regime posterior — calibrated probabilities across all 6 states, not just the top pick.
- Directional & volatility buckets — p(up/down), expected-vol and a depth-aware liquidation-risk bucket driven by live order-book fragility.
- Transition odds — the probability of shifting regime over the horizon, plus a seeded tomorrow-distribution on 24h.
- Per-coin & history — the same engine across coins, an
explain block, and full regime history.
ENDPOINTS
GET/quant/market
whole-market posterior
GET/quant/coins
per-coin regimes
GET/quant/regimes/history
historical distribution
GET/quant/model
model card
EXAMPLE — WHOLE-MARKET REGIME POSTERIOR, 24H
curl "https://cryptodataapi.com/api/v1/quant/market?horizon=24h" \
-H "X-API-Key: cdk_live_your_key"
04
SIGNUM_RGG Trend Radar
PRO
all HL perps + Binance
A per-asset trend-state radar built on ADX(14)+DMI: every asset is classified RED, GREY or GREEN with hysteresis to suppress whipsaw, then tracked for how long it has held that color, when it last flipped, and how far price has moved since. Covers all Hyperliquid perps plus Binance.
WHAT YOU GET
- Trend state — RED / GREY / GREEN per asset from ADX(14)+DMI, with hysteresis so it doesn't whipsaw.
- Days in color — how long each asset has held its current trend state.
- Flip date & move since flip — when it last changed color and the price move since.
- Full universe — every Hyperliquid perp plus Binance, screenable in one call.
ENDPOINTS
GET/indicators/signum-rgg
all assets
GET/indicators/signum-rgg/{symbol}
single-asset history
EXAMPLE — FRESHEST GREEN FLIPS
curl "https://cryptodataapi.com/api/v1/indicators/signum-rgg?color=green&sort=days_in_color&order=asc" \
-H "X-API-Key: cdk_live_your_key"
05
Technical / Structural Regime
PRO
per-asset
A price-structure screener that reads each asset's position against its moving averages, Bollinger-band compression, recent range and RSI extremes — turning raw OHLC into a clean, sortable structural state you can filter for breakout, squeeze and mean-reversion setups.
WHAT YOU GET
- Moving-average position — above / below / reclaim / breakdown vs the 200, with days-since.
- Bollinger Bands — squeeze detection, days-in-squeeze, and bandwidth percentile (how compressed vs. its own history).
- RSI(14) — overbought / oversold & extreme state on both the daily and 1h timeframes, with duration.
- 20-day range — position in the recent range (near-low / mid / near-high) for breakout & mean-reversion setups.
ENDPOINTS
GET/indicators/technical
screener
GET/indicators/technical/{symbol}
60d daily history
POST/indicators/technical/refresh
force recompute
EXAMPLE — MOST-COMPRESSED SQUEEZES
curl "https://cryptodataapi.com/api/v1/indicators/technical?bb=in_squeeze&sort=squeeze_days&order=desc&limit=20" \
-H "X-API-Key: cdk_live_your_key"