CryptoCompare Market Data Scraper
Pricing
from $10.00 / 1,000 results
Go to Apify Store
CryptoCompare Market Data Scraper
Scrape cryptocurrency market data from CryptoCompare. Get prices, volumes, market caps, supply data, algorithms, and price history for thousands of coins. Includes 24h high/low and exchange data.
Scrape comprehensive cryptocurrency market data from CryptoCompare -- one of the leading crypto data providers covering thousands of coins across hundreds of exchanges.
What it does
- Browse mode: Get top coins ranked by market cap with full market data
- Search mode: Look up specific coins by symbol (BTC, ETH, SOL, etc.)
- Multi-currency: Get prices in USD, EUR, GBP, JPY, or quoted in BTC/ETH
- Price history: Optionally fetch 7-day daily OHLCV candle data
Input Parameters
| Parameter | Type | Description |
|---|---|---|
searchQueries | array | Coin symbols (e.g. "BTC", "ETH", "SOL"). Leave empty for top coins |
currency | string | Quote currency: USD, EUR, GBP, JPY, BTC, ETH. Default: USD |
maxResults | integer | Max coins to scrape. Default: 50, max: 2000 |
includeHistory | boolean | Include 7-day OHLCV price history. Default: false |
proxyConfiguration | object | Proxy settings |
Output Fields
| Field | Type | Description |
|---|---|---|
name | string | Full coin name (e.g. "Bitcoin") |
symbol | string | Ticker symbol (e.g. "BTC") |
algorithm | string | Hashing algorithm (e.g. "SHA-256") |
proofType | string | Consensus mechanism (e.g. "PoW") |
price | number | Current price |
open24h | number | 24-hour opening price |
high24h | number | 24-hour high |
low24h | number | 24-hour low |
change24h | number | 24-hour price change (absolute) |
changePct24h | number | 24-hour price change (%) |
changeHour | number | 1-hour price change (absolute) |
changePctHour | number | 1-hour price change (%) |
volume24h | number | 24-hour trading volume (in coin) |
volumeTo24h | number | 24-hour trading volume (in quote currency) |
marketCap | number | Market capitalization |
circulatingSupply | number | Circulating supply |
totalSupply | number | Total supply |
totalTopTierVolume24h | number | Volume on top-tier exchanges |
lastMarket | string | Last exchange where traded |
imageUrl | string | Coin logo URL |
priceHistory7d | array | 7-day OHLCV data (if includeHistory enabled) |
sourceUrl | string | CryptoCompare coin page URL |
scrapedAt | string | ISO 8601 timestamp |
Example Output
{"name": "Bitcoin","symbol": "BTC","algorithm": "SHA-256","proofType": "PoW","price": 79219.71,"open24h": 77480.32,"high24h": 79500.00,"low24h": 77200.00,"change24h": 1739.39,"changePct24h": 2.25,"volume24h": 12882.07,"marketCap": 1586078763448,"circulatingSupply": 20021265,"totalSupply": 20021265,"lastMarket": "Binance","imageUrl": "https://www.cryptocompare.com/media/37746251/btc.png","sourceUrl": "https://www.cryptocompare.com/coins/btc/overview","scrapedAt": "2026-04-26T10:00:00.000Z"}
Example Inputs
Get top 100 coins in USD
{"maxResults": 100,"currency": "USD"}
Look up specific coins with price history
{"searchQueries": ["BTC", "ETH", "SOL", "ADA", "DOT"],"includeHistory": true}
Get top coins priced in EUR
{"maxResults": 50,"currency": "EUR"}