CryptoCompare Market Data Scraper avatar

CryptoCompare Market Data Scraper

Pricing

from $10.00 / 1,000 results

Go to Apify Store
CryptoCompare Market Data Scraper

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.

Pricing

from $10.00 / 1,000 results

Rating

0.0

(0)

Developer

lulz bot

lulz bot

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

15 days ago

Last modified

Categories

Share

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

ParameterTypeDescription
searchQueriesarrayCoin symbols (e.g. "BTC", "ETH", "SOL"). Leave empty for top coins
currencystringQuote currency: USD, EUR, GBP, JPY, BTC, ETH. Default: USD
maxResultsintegerMax coins to scrape. Default: 50, max: 2000
includeHistorybooleanInclude 7-day OHLCV price history. Default: false
proxyConfigurationobjectProxy settings

Output Fields

FieldTypeDescription
namestringFull coin name (e.g. "Bitcoin")
symbolstringTicker symbol (e.g. "BTC")
algorithmstringHashing algorithm (e.g. "SHA-256")
proofTypestringConsensus mechanism (e.g. "PoW")
pricenumberCurrent price
open24hnumber24-hour opening price
high24hnumber24-hour high
low24hnumber24-hour low
change24hnumber24-hour price change (absolute)
changePct24hnumber24-hour price change (%)
changeHournumber1-hour price change (absolute)
changePctHournumber1-hour price change (%)
volume24hnumber24-hour trading volume (in coin)
volumeTo24hnumber24-hour trading volume (in quote currency)
marketCapnumberMarket capitalization
circulatingSupplynumberCirculating supply
totalSupplynumberTotal supply
totalTopTierVolume24hnumberVolume on top-tier exchanges
lastMarketstringLast exchange where traded
imageUrlstringCoin logo URL
priceHistory7darray7-day OHLCV data (if includeHistory enabled)
sourceUrlstringCryptoCompare coin page URL
scrapedAtstringISO 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"
}