CoinPaprika Crypto Market Scraper avatar

CoinPaprika Crypto Market Scraper

Pricing

from $3.50 / 1,000 results

Go to Apify Store
CoinPaprika Crypto Market Scraper

CoinPaprika Crypto Market Scraper

Scrape live cryptocurrency market data from CoinPaprika: price, volume, market cap, supply, ATH and 1h/24h/7d/30d price changes for thousands of coins. Schedule it for continuous market snapshots.

Pricing

from $3.50 / 1,000 results

Rating

0.0

(0)

Developer

Logiover

Logiover

Maintained by Community

Actor stats

0

Bookmarked

22

Total users

3

Monthly active users

2 days ago

Last modified

Share

๐Ÿช™ CoinPaprika Crypto Market Scraper โ€” Live Coin Prices, Market Cap & Supply Data

CoinPaprika Crypto Market Scraper

Bulk-export the entire CoinPaprika cryptocurrency universe โ€” thousands of coins ranked by market cap, with USD price, 24-hour volume, market cap, rank, supply, all-time high and 1h/24h/7d/30d momentum โ€” in one fast, structured run. A free, exchange-agnostic alternative to CoinGecko and CoinMarketCap, powered directly by CoinPaprika's official public API.

Built for crypto portfolio dashboards, screeners, research teams, on-chain analytics platforms, tax software, content creators, indexers and any product that needs a clean, vendor-neutral view of the crypto market โ€” without writing rate-limiting, pagination or schema-flattening logic by hand.

๐ŸŸข No API key. No proxy. No login. No browser automation. Pure public REST API.


๐Ÿš€ Why CoinPaprika instead of CoinGecko / CoinMarketCap

CoinPaprika is an independent, ad-supported crypto market data provider that has been around since 2018. Compared to the bigger names, it has several advantages:

  • No API key required for the public tier โ€” most CG / CMC endpoints now demand a key and apply hard quotas
  • Generous rate limits โ€” comfortably ~25k calls / day on the free tier
  • Consistent shape โ€” the /v1/tickers endpoint returns every coin with the same nested quotes.USD block, so flattening is trivial
  • Includes all-time high data per coin โ€” useful for "how far from peak" research that requires premium tiers elsewhere
  • Includes total / max supply โ€” for proper market-cap math and dilution analysis

This actor wraps CoinPaprika's /v1/tickers endpoint and gives you a flat, sorted, ready-to-use dataset of the entire crypto market in one run.


๐ŸŽฏ What this scraper does

Returns a flat, fully-typed snapshot of thousands of cryptocurrencies ranked by market cap in a single run. Each row contains the CoinPaprika coin ID, name, symbol, market-cap rank, USD price, 24h volume, market cap, 1h / 24h / 7d / 30d price change, all-time high price and date, percent from ATH, total supply, max supply and CoinPaprika's last-updated timestamp.

It is a drop-in CoinPaprika API scraper for anyone who needs a CoinGecko-style market dataset without paying for an enterprise API key.


โœจ Key features

FeatureWhat it gives you
๐Ÿช™ Official CoinPaprika public APIDirect connection to api.coinpaprika.com โ€” no HTML scraping, no Cloudflare bypass
๐ŸŒ Exchange-agnosticOne blended price per coin across the entire market โ€” not tied to any single venue
๐Ÿ“ˆ Multi-timeframe momentum1h, 24h, 7d and 30d % change in every row
๐Ÿ”๏ธ All-time high dataATH price, ATH date, percent from ATH โ€” for every coin
๐Ÿ“ฆ Supply dataTotal supply and max supply for proper market-cap math
๐Ÿ”ข Rank-orderedCoins come back ranked by market cap
๐Ÿ“ค Flat, export-ready rows17 columns, no nested JSON โ€” CSV / Excel / JSON / XML out of the box
โšก FastThousands of coins in 4โ€“6 seconds
๐Ÿ”“ No authenticationNo CoinPaprika API key, no proxy, no login
๐ŸŽฏ Cap with maxCoinsPull all coins or only the top N โ€” your choice
๐ŸŒ Vendor-neutralIndependent data source, not owned by any exchange
๐Ÿ” Schedule-friendlyRun hourly or daily for a continuously updated market dataset

๐ŸŽฏ Built for these use cases

1. Portfolio dashboards & wallet trackers

Map wallet token holdings to USD value, 24h P&L and dominance percent. CoinPaprika's exchange-agnostic price is the right benchmark for "what is my portfolio worth" displays โ€” better than picking any single exchange.

2. Crypto screeners & ranking sites

Power a CoinGecko-style ranking page with rank, market cap, volume, supply and momentum across thousands of coins. The all-time high field is perfect for "drawdown from ATH" leaderboards.

3. Research & due diligence

Compare a project's market cap, supply schedule (total vs max), and distance from ATH. CoinPaprika's neutrality matters when you don't want exchange-specific biases.

4. Tax & accounting reporting

Many tax authorities accept a third-party aggregated price (rather than picking an exchange) for crypto valuation. Snapshot CoinPaprika daily / monthly for cost-basis reporting.

5. Content creators & newsletters

"Top 10 gainers this week", "altcoin season indicator", "biggest drawdowns from ATH" โ€” all easily generated from a single CoinPaprika run.

6. On-chain analytics & data products

Use CoinPaprika as the canonical market-cap source in your analytics pipeline, then enrich with on-chain data from elsewhere. Schedule the scraper hourly to keep your DB fresh.

7. Quant & backtesting pipelines

Build a historical market-cap archive by running the scraper on a daily schedule. Export CSV / Parquet, load into your backtester for momentum, mean-reversion or rank-rotation strategies.

8. API resellers & B2B data products

Re-publish CoinPaprika market data behind your own API or dashboard product. The flat, well-typed output is easy to host downstream.


๐Ÿ“ฅ Inputs

FieldTypeRequiredDescription
maxCoinsintegerNoMaximum coins to scrape, ranked by market cap. 0 (or empty) = all coins available (thousands).

Example inputs

Entire market (every coin CoinPaprika tracks):

{
"maxCoins": 0
}

Top 100 by market cap:

{
"maxCoins": 100
}

Just the top 10 (for a "majors" dashboard):

{
"maxCoins": 10
}

๐Ÿ“ค Output

{
"id": "btc-bitcoin",
"name": "Bitcoin",
"symbol": "BTC",
"rank": 1,
"priceUsd": 64235.10,
"volume24h": 28135000000.0,
"marketCap": 1268000000000.0,
"percentChange1h": 0.12,
"percentChange24h": 1.94,
"percentChange7d": 4.55,
"percentChange30d": -6.12,
"athPrice": 73835.57,
"athDate": "2024-03-14T00:00:00Z",
"percentFromAth": -13.01,
"totalSupply": 19720000.0,
"maxSupply": 21000000.0,
"lastUpdated": "2026-05-16T08:59:55Z",
"scrapedAt": "2026-05-16T09:00:01.250Z"
}

Field reference

FieldTypeMeaning
idstringCoinPaprika coin ID (e.g. btc-bitcoin, eth-ethereum)
namestringHuman-readable coin name
symbolstringTicker symbol
ranknumberPosition in CoinPaprika's market-cap ranking
priceUsdnumberCurrent price in USD
volume24hnumber24h trading volume in USD across all venues
marketCapnumberMarket capitalization (price ร— circulating supply)
percentChange1hnumber1-hour price change percentage
percentChange24hnumber24-hour price change percentage
percentChange7dnumber7-day price change percentage
percentChange30dnumber30-day price change percentage
athPricenumberAll-time high price
athDatestringISO-8601 date of the all-time high
percentFromAthnumberPercentage change from the ATH (usually negative)
totalSupplynumberTotal supply minted to date
maxSupplynumberMaximum possible supply (null for uncapped coins)
lastUpdatedstringCoinPaprika's last-update timestamp for the coin
scrapedAtstringISO-8601 timestamp of when this row was generated

โš™๏ธ How it works

  1. Loads input โ€” maxCoins cap (default: all)
  2. Calls CoinPaprika /v1/tickers โ€” fetches all available coins in one paginated response
  3. Iterates the response โ€” extracts every coin's USD quote block
  4. Flattens โ€” turns quotes.USD.percent_change_24h into percentChange24h, and so on
  5. Caps at maxCoins if set
  6. Streams flat rows into the Apify dataset (live in the run console)

The actor uses ONLY CoinPaprika's officially-supported public REST API (api.coinpaprika.com). No HTML scraping, no headless browser, no proxy, no anti-bot bypass. Endpoints are documented at api.coinpaprika.com.


โšก Performance

WorkloadTimeAPI calls
Top 10 coins~2 seconds1
Top 100 coins~3 seconds1
Top 1,000 coins~5 seconds1
Full market (~5,000 coins)~6 seconds1

The CoinPaprika tickers endpoint returns up to 5,000 coins in a single response, so run time is essentially constant.


๐Ÿ’ฐ Cost model

This actor is Pay-Per-Event โ€” you are charged a small per-run fee plus a small per-dataset-item fee. Setting maxCoins to a smaller number keeps the bill low if you only need a leaderboard.

Typical run sizes:

  • Top 10 (majors dashboard) โ†’ 10 rows
  • Top 100 (CoinGecko-style screener) โ†’ 100 rows
  • Top 1,000 (broad market) โ†’ 1,000 rows
  • Full universe โ†’ ~5,000 rows

๐Ÿ”„ Schedule for continuous monitoring

Use Apify's scheduler to keep your CoinPaprika dataset always fresh:

  • Every 5 minutes โ€” for live screeners and big-mover alerts
  • Every 15 minutes โ€” for portfolio refresh
  • Hourly โ€” for analytics dashboards and most products
  • Daily โ€” for tax / accounting snapshots and weekly research

Because CoinPaprika data updates roughly every 5 minutes server-side, polling faster than every 5 minutes gives diminishing returns.


๐Ÿ› ๏ธ FAQ

Do I need a CoinPaprika API key? No. The public CoinPaprika API (api.coinpaprika.com/v1) requires no authentication for the endpoints used by this scraper.

How is CoinPaprika different from CoinGecko or CoinMarketCap? All three aggregate prices across exchanges, but CoinPaprika is fully open without a key for the public tier, has generous rate limits, and includes ATH and supply data that often require paid plans elsewhere.

How often does CoinPaprika update its data? Roughly every 5 minutes. Each coin includes its own lastUpdated timestamp so you know exactly when CoinPaprika last refreshed it.

How many coins will I get? Thousands โ€” CoinPaprika tracks every coin with at least minimal exchange listing. Set maxCoins to 0 for the full universe.

Can I filter or sort? The output is already ranked by market cap (rank 1 first). For custom sorts or filters, do them downstream โ€” the dataset exports cleanly to CSV / Excel where any ordering is one click away.

Are stablecoins included? Yes. USDT, USDC, DAI, FDUSD, TUSD, FRAX and others are all in the dataset (typically near the top of the ranking).

Does this include DeFi / NFT / GameFi / meme coins? Yes โ€” every coin CoinPaprika lists, including all of those subcategories.

Is the data in USD only? This scraper returns the USD quote block. CoinPaprika also exposes EUR / BTC quotes โ€” let us know if you need a multi-quote variant.

How fresh is the data? Each run captures the latest snapshot at execution time. scrapedAt is the actor timestamp; lastUpdated is CoinPaprika's own freshness signal per coin.

Can I export to CSV or Excel? Yes. The Apify dataset exports natively as JSON, CSV, Excel (XLSX), HTML, XML and JSONL.

What's the difference between this and binance-spot-market-scraper?

  • coinpaprika-crypto-market-scraper (this) = exchange-agnostic coin-level data (price, rank, market cap, ATH, supply). Best for screeners, market-cap dashboards, research.
  • binance-spot-market-scraper = exchange-specific pair-level data (BTCUSDT, ETHUSDTโ€ฆ) with bid/ask, trade count. Best for trading bots and Binance-specific workflows.

How is this different from on-chain price feeds? On-chain feeds (Chainlink, Pyth) come from oracle networks pushing prices on-chain. CoinPaprika aggregates off-chain exchange data. Use this for research / dashboards, use on-chain oracles for smart-contract pricing.

Can I integrate via webhook / API? Yes. Apify exposes REST API endpoints for run triggers and dataset downloads, plus webhooks that fire on run finish. Works with Zapier, Make, n8n and any HTTP client.


ScraperCoverage
coinpaprika-crypto-market-scraperYou are here. Cross-exchange coin-level (price, rank, market cap, supply, ATH).
binance-spot-market-scraperBinance spot โ€” all 3,500+ pairs.
kraken-market-scraperKraken spot โ€” every Kraken trading pair with VWAP.
bybit-market-scraperBybit spot + linear / inverse futures with funding rate.
okx-market-scraperOKX spot + SWAP (perpetuals) + FUTURES + OPTION.
kucoin-market-scraperKuCoin every spot pair with quote-currency filter.
bitget-market-scraperBitget spot + USDT-margined + coin-margined futures.
mexc-market-scraperMEXC every spot pair (gem-listing focus).

๐Ÿ”‘ Keyword cloud

Core: coinpaprika api scraper, coinpaprika scraper, crypto market data scraper, crypto market cap api, cryptocurrency prices api, coin price api, crypto screener data, crypto market export, coingecko alternative, coinmarketcap alternative, free crypto api, no-key crypto api.

Per asset: bitcoin price api, ethereum price api, solana price api, sol price scraper, bnb price scraper, xrp price api, doge price scraper, ada price scraper, link price scraper, matic price scraper, altcoin prices scraper.

Per use case: crypto portfolio tracker data, crypto screener data, crypto research data, crypto tax reporting data, crypto accounting data, market-cap leaderboard data, ath drawdown data, supply schedule data, crypto dashboard data, crypto newsletter data.

Per audience: crypto data for analysts, crypto data for researchers, crypto data for content creators, crypto data for indexers, crypto data for fintech, market data api for developers, crypto data for portfolio apps, vendor-neutral crypto pricing.


Changelog

  • 2026-06-01 โ€” Maintenance & reliability pass: pulled the latest source and rebuilt the Actor on the current base image; build verified.
  • 2026-05-25 โ€” Maintenance & reliability pass: pulled the latest source and rebuilt the Actor on the current base image; build verified.

  • 2026-05-20 โ€” Maintenance pass: reviewed the input schema and default values for a smooth one-click start, and rebuilt the Actor on the latest base image.

Last reviewed: 2026-06-01.