CryptoQuant Data Parser & API
CryptoQuant is an institutional-grade on-chain analytics platform that tracks exchange flows, miner activity, network health and market valuation metrics for Bitcoin, Ethereum and major crypto assets, and StockAPIS extracts its data — exchange inflows/outflows, reserves, hash rate, SOPR, MVRV and the Puell Multiple — through a single REST API. CryptoQuant offers an official data API, and StockAPIS normalizes it to the same schema you use for every other source, so on-chain metrics arrive alongside exchange prices and market data without maintaining a separate integration.
| Type | Data API (on-chain analytics) |
|---|---|
| HQ | South Korea (Seoul) |
| Owner | CryptoQuant, Inc. |
| Asset classes | On-chain metrics, Exchange flows, Mining data, Market indicators, Derivatives data |
| Coverage | Bitcoin, Ethereum, stablecoins & major assets across 20+ exchanges |
| Scale | Leading institutional on-chain analytics provider |
| API access | Official API |
| Parse priority | ★★★★☆ |
| Official site | cryptoquant.com |
Platform Overview
Market Position
- A leading institutional provider of on-chain and exchange-flow analytics, headquartered in Seoul, South Korea
- Trusted by funds, desks and researchers for whale tracking, exchange-reserve monitoring and cycle indicators
- Coverage spans Bitcoin, Ethereum, stablecoins and major assets across 20+ centralized exchanges
- Official data API, complemented by StockAPIS’s unified normalization
Data Coverage
StockAPIS exposes the full CryptoQuant analytics surface:
- Exchange flows — inflows, outflows and net flow per exchange, plus aggregate exchange reserves
- Network metrics — hash rate, mining difficulty, block size and transaction count
- Mining data — miner flows, miner reserves and hash-rate distribution
- Market indicators — SOPR, MVRV, Puell Multiple and NVT ratio for cycle and valuation analysis
- Derivatives data — funding rates, open interest and taker buy/sell metrics
- On-chain signals — buy/sell context derived from aggregate on-chain behavior
Quick Start
import stockapis
client = stockapis.Client(api_key="your-api-key")
# Latest Bitcoin exchange net flow from CryptoQuant
flow = client.cryptoquant.get_exchange_flow(asset="BTC", exchange="binance")
print(f"Net flow: {flow['netFlow']} BTC · reserve {flow['exchangeReserve']} BTC")const { StockAPIS } = require("stockapis");
const client = new StockAPIS({ apiKey: "your-api-key" });
// Latest on-chain market indicator (MVRV)
const mvrv = await client.cryptoquant.getMarketIndicator({
asset: "BTC",
indicator: "mvrv",
});
console.log(mvrv.value, mvrv.timestamp);Sample API Response
{
"success": true,
"data": [
{
"asset": "BTC",
"exchange": "binance",
"exchangeInflow": 1842.51,
"exchangeOutflow": 2310.07,
"netFlow": -467.56,
"exchangeReserve": 612430.18,
"unit": "BTC",
"timestamp": "2024-01-15T10:30:00.000Z",
"change24h": -0.42
}
],
"metadata": {
"source": "cryptoquant",
"metric": "exchange_flow",
"timestamp": "2024-01-15T10:30:00.000Z"
}
}Use Cases
- Whale & exchange-flow monitoring — track inflows, outflows and reserves to anticipate supply shocks and sell pressure
- Cycle & valuation analysis — use MVRV, SOPR and the Puell Multiple to gauge market tops and bottoms
- Quant research — combine on-chain features with price and order-book data for richer backtests and signals
- Institutional risk & compliance — fold exchange-reserve and miner-flow data into portfolio risk and market-structure dashboards
Frequently Asked Questions
Does CryptoQuant have an official API? Yes — CryptoQuant provides an official data API for on-chain and market metrics. StockAPIS wraps it in a unified schema so CryptoQuant data matches every other source you pull.
What data can I get from CryptoQuant through StockAPIS? Exchange inflows, outflows, net flow and reserves; network hash rate and difficulty; miner flows; and market indicators including SOPR, MVRV, the Puell Multiple and NVT ratio across Bitcoin, Ethereum and major assets.
Is CryptoQuant data real-time? StockAPIS delivers the latest available CryptoQuant readings and historical series; on-chain metrics update on block and exchange cadence rather than tick-by-tick like an exchange price feed.