CoinCodex Crypto Scraper - Prices, Market Cap & History avatar

CoinCodex Crypto Scraper - Prices, Market Cap & History

Pricing

from $0.50 / 1,000 results

Go to Apify Store
CoinCodex Crypto Scraper - Prices, Market Cap & History

CoinCodex Crypto Scraper - Prices, Market Cap & History

$0.5/1K 🔥 CoinCodex crypto scraper! Prices, market cap, ATH/ATL & historical data for 10000+ coins. No key. JSON, CSV, Excel or API in seconds. Power portfolio & market dashboards ⚡

Pricing

from $0.50 / 1,000 results

Rating

0.0

(0)

Developer

ninhothedev

ninhothedev

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

3 days ago

Last modified

Share

CoinCodex Crypto Scraper - Prices, Market Cap, ATH & Historical Data

Scrape live cryptocurrency market data and historical price series from CoinCodex for 10,000+ coins - no API key, no login, no rate-limit headaches. Feed it a list of ticker symbols (BTC, ETH, SOL, ...) and get back clean, flat JSON/CSV rows with price, market cap, 24h volume, all-time high, all-time low, supply and multi-timeframe percentage changes.

Perfect for crypto dashboards, portfolio trackers, market research and trading bots.

What this actor does

ModeWhat you getOne row =
coinsCurrent market snapshot per symbol: price, market cap, 24h high/low, volume, ATH, ATL, supply, 1h/24h/7d/30d/1y changeone coin
historyHistorical time series per symbol between two dates: price, volume and market cap per sampleone price sample

Features

  • No API key required - CoinCodex's public endpoints are used directly.
  • 10,000+ coins - every ticker listed on CoinCodex, from Bitcoin to micro-cap altcoins.
  • All-time high & all-time low in USD, which most free crypto APIs paywall.
  • Historical price series with a configurable sample resolution and date range.
  • Flat rows - one item per coin or per data point, ready for CSV, Excel, Google Sheets, BigQuery or a database.
  • Cheap and fast - roughly $0.5 per 1,000 items, plus Apify platform usage.
  • Robust fetching - Chrome TLS impersonation via curl_cffi with an automatic plain-HTTP fallback and retries.

Input

{
"mode": "coins",
"symbols": ["BTC", "ETH", "SOL"],
"maxItems": 500
}

Historical example:

{
"mode": "history",
"symbols": ["BTC", "ETH"],
"startDate": "2024-01-01",
"endDate": "2024-03-01",
"samples": 100,
"maxItems": 2000
}
FieldTypeDefaultDescription
modeselectcoinscoins for the current market snapshot, history for a price series
symbolsarray["BTC","ETH","SOL"]CoinCodex ticker symbols, case-insensitive
startDatestring30 days agoFirst day of the historical range, YYYY-MM-DD
endDatestringtodayLast day of the historical range, YYYY-MM-DD
samplesinteger100Requested number of points in the historical series
maxItemsinteger500Hard cap on dataset rows (max 5,000)

Output

coins mode:

{
"type": "coin",
"symbol": "BTC",
"name": "Bitcoin",
"slug": "bitcoin",
"rank": 1,
"price_usd": 63287.97,
"high_24h": 65408.05,
"low_24h": 63127.95,
"market_cap_usd": 1269702620258.82,
"volume_24h_usd": 39061938176.0,
"change_1h_pct": -0.3348,
"change_24h_pct": -2.7327,
"change_7d_pct": -4.4763,
"change_30d_pct": 5.0371,
"change_1y_pct": -46.6802,
"ath_usd": 126025.0,
"atl_usd": 0.05,
"supply": 20062306.0,
"total_supply": 21000000.0,
"website": "https://bitcoin.org/",
"platform": "BTC",
"trading_since": "2009-01-03T00:00:00+00:00",
"url": "https://coincodex.com/crypto/bitcoin",
"source": "coincodex",
"scraped_at": "2026-07-28T13:34:37.450590+00:00"
}

history mode:

{
"type": "history",
"symbol": "BTC",
"date": "2024-01-01T00:00:00+00:00",
"price_usd": 42717.55,
"volume": 24528243615.92,
"market_cap": 832155774483.88,
"source": "coincodex",
"scraped_at": "2026-07-28T13:34:38.687374+00:00"
}

Every field is nullable - if CoinCodex does not report a value for a coin, the field is null rather than missing, so your downstream schema stays stable.

Use cases

  • Crypto dashboards - power a live price board or TV wall with prices, market caps and 24h moves.
  • Portfolio tracking - value a portfolio daily and compute unrealised P&L against ATH and cost basis.
  • Market research - pull historical series for hundreds of coins to backtest, correlate or chart drawdowns from all-time highs.
  • Trading bots & alerts - schedule the actor every few minutes and trigger alerts when a coin crosses a threshold or approaches its ATH.

Pricing

Around $0.5 per 1,000 items plus standard Apify platform usage. A 500-coin snapshot costs a few cents.

Notes & limitations

  • Market cap in coins mode is derived as circulating supply x last price, which reproduces CoinCodex's own reported market cap exactly.
  • CoinCodex may return slightly more history points than the samples value you request; maxItems is always respected.
  • Unknown or delisted tickers are skipped with a warning instead of failing the run.
  • This actor only reads publicly available data from CoinCodex. Nothing is scraped behind a login.