CoinGecko Crypto Scraper — Prices, Market Cap & Coin Data
Pricing
from $1.20 / 1,000 coin extracteds
CoinGecko Crypto Scraper — Prices, Market Cap & Coin Data
CoinGecko crypto scraper — pull live coin prices, market cap, rank, 24h volume, ATH/ATL, supply and full coin profiles into clean JSON/CSV. Two modes: bulk market overview or per-coin detail. No API key or account needed. Independent tool — not affiliated with CoinGecko.
Pricing
from $1.20 / 1,000 coin extracteds
Rating
0.0
(0)
Developer
SIÁN OÜ
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
2 days ago
Last modified
Categories
Share
CoinGecko Crypto Scraper — Prices, Market Cap & Coin Data 🪙
🎉 Live crypto market data in one run — hundreds of coins with price, market cap, rank, 24h volume, ATH/ATL and supply, plus full per-coin profiles.
Built for analysts, traders, builders and anyone who needs clean, structured cryptocurrency data without an API key.
📋 Overview
Need crypto data you can actually use? This scraper turns the live coin market into clean, structured datasets — ready for spreadsheets, dashboards, screeners and BI tools.
Why thousands of professionals choose us:
- ✅ Whole-market in one run: hundreds of coins per run, each with price, market cap, rank, 24h volume, 24h high/low, ATH/ATL and supply
- ⚡ Fast & lightweight: structured JSON/CSV out in seconds — no browser, no captcha, no setup
- 🎯 35+ fields per coin: from the ranked market list to full coin profiles (description, categories, homepage, genesis date, hashing algorithm, sentiment)
- 💰 Best price on the market: pay-per-result, only for the coins you keep — cheaper than the leading alternatives
- 💎 No API key, no account: paste your filters and go
- ✨ NEW: two purpose-built modes — bulk Overview for the whole market and rich Profile for specific coins
✨ Features
- 📊 Bulk Market Overview: the full ranked coin list — sort by market cap or volume, filter by category
- 🔎 Full Coin Profiles: per-coin detail with description, categories, homepage, sentiment and watchlist users
- 💵 Multi-currency: quote prices in USD, EUR, GBP, JPY, BTC and more
- 🏷️ Category filters: narrow to layer-1, DeFi, meme tokens, stablecoins and more
- 🚀 ATH/ATL tracking: all-time-high and all-time-low prices, dates and percentage gaps
- 🖼️ Coin logos included: ready-to-display image URLs for every coin
- 🧮 Supply metrics: circulating, total and max supply for tokenomics analysis
- 📈 Field-coverage report: an HTML run summary with quality metrics and any failures
🎬 Quick Start
Pick a mode, set your filters, and run. Overview returns the ranked market list; Profile returns full detail for the coins you name. Results land in a clean dataset you can export as JSON, CSV or Excel.
curl -X POST "https://api.apify.com/v2/acts/sian.agency~coingecko-crypto-scraper/runs?token=YOUR_TOKEN" \-H 'Content-Type: application/json' \-d '{"mode": "overview", "order": "market_cap_desc", "maxPages": 1}'
🚀 Getting Started (3 Simple Steps)
Step 1: Choose a mode
Pick Overview for the bulk market list or Profile for full per-coin detail.
Step 2: Set your filters
Choose a sort order, a category, a quote currency, or list specific coin IDs.
Step 3: Run and export
Start the actor and download your dataset as JSON, CSV or Excel.
That's it! In under a minute, you'll have:
- A structured table of live coin market data
- 35+ fields per coin, ready for analysis
- An HTML report summarizing the run
📥 Input Configuration
| Field | Type | Required | Description |
|---|---|---|---|
| mode | string | No | overview (bulk market list) or profile (per-coin detail) |
| order | string | No | Sort order for overview (market cap / volume / id) |
| category | string | No | Restrict overview to a coin category (e.g. layer-1) |
| vsCurrency | string | No | Quote currency (e.g. usd, eur, btc) |
| perPage | integer | No | Coins per page for overview (1–250) |
| maxPages | integer | No | Overview pages to fetch |
| coinIds | array | No | Coin IDs or URLs (required for profile mode) |
| startUrl | string | No | A single CoinGecko coin URL |
Example — bulk market overview:
{"mode": "overview","order": "market_cap_desc","category": "layer-1","perPage": 100,"maxPages": 2}
Example — full coin profiles:
{"mode": "profile","coinIds": ["bitcoin", "ethereum", "solana"]}
📤 Output
Results are saved to the Apify dataset with 35+ fields including:
| Field | Type | Description |
|---|---|---|
| name / symbol | string | Coin name and ticker |
| market_cap_rank | number | Rank by market capitalization |
| current_price | number | Latest price in the quote currency |
| market_cap | number | Total market capitalization |
| total_volume | number | 24h trading volume |
| price_change_percentage_24h | number | 24h percent change |
| ath / atl | number | All-time high / low price |
| circulating_supply / max_supply | number | Supply metrics |
| categories | array | Coin category tags (profile mode) |
| homepage | string | Official project homepage (profile mode) |
| thumbnail | string | Coin logo image URL |
| url | string | Public CoinGecko page |
Example:
{"id": "bitcoin","symbol": "btc","name": "Bitcoin","market_cap_rank": 1,"current_price": 62913.0,"market_cap": 1261261023174,"total_volume": 30400765540,"price_change_percentage_24h": -1.90,"ath": 126080.0,"atl": 67.81,"circulating_supply": 20047125.0,"max_supply": 21000000.0,"thumbnail": "https://assets.coingecko.com/coins/images/1/large/bitcoin.png","url": "https://www.coingecko.com/en/coins/bitcoin"}
💼 Use Cases & Examples
1. Portfolio & Watchlist Dashboards
For traders tracking a basket of coins. Input: A list of coin IDs in profile mode. Output: Live prices, 24h change and supply per coin. Use: Power a personal dashboard or Google Sheet that refreshes on a schedule.
2. Market Research & Token Screening
For analysts ranking the market. Input: Overview mode sorted by market cap or volume, optionally filtered by category. Output: The full ranked coin list with prices and metrics. Use: Screen for movers, compare categories, build market maps.
3. Backtesting & Quant Feeds
For quants building data pipelines. Input: Overview mode on a schedule. Output: A consistent daily snapshot of the market. Use: Feed a backtesting engine or a model training set.
4. Crypto Content & Newsletters
For writers and creators. Input: Trending categories or top coins in overview mode. Output: Up-to-date numbers for articles and posts. Use: Auto-populate market tables in a newsletter.
5. Competitive & Tokenomics Analysis
For founders and investors. Input: Profile mode for target coins. Output: Supply, valuation, sentiment and category data. Use: Compare tokenomics across competing projects.
6. BI & Spreadsheet Exports
For data teams. Input: Any mode, exported as CSV/Excel. Output: A clean table that drops straight into BI tools. Use: Join crypto data with internal metrics.
🔗 Integration Examples
JavaScript/Node.js
import { ApifyClient } from 'apify-client';const client = new ApifyClient({ token: 'YOUR_TOKEN' });const run = await client.actor('sian.agency/coingecko-crypto-scraper').call({mode: 'overview',order: 'market_cap_desc',maxPages: 1});const { items } = await client.dataset(run.defaultDatasetId).listItems();console.log(items[0]);
Python
from apify_client import ApifyClientclient = ApifyClient('YOUR_TOKEN')run = client.actor('sian.agency/coingecko-crypto-scraper').call(run_input={'mode': 'profile', 'coinIds': ['bitcoin', 'ethereum']})for item in client.dataset(run['defaultDatasetId']).iterate_items():print(item)
cURL
curl -X POST 'https://api.apify.com/v2/acts/sian.agency~coingecko-crypto-scraper/runs?token=YOUR_TOKEN' \-H 'Content-Type: application/json' \-d '{"mode": "overview", "order": "volume_desc"}'
Automation Workflows (N8N / Zapier / Make)
- Trigger: Schedule (e.g. hourly) or webhook
- HTTP Request: Call the actor API
- Process: Handle the JSON dataset
- Action: Save to a sheet, database or send an alert
📊 Performance & Pricing
FREE Tier (Try It Now)
- 25 coins per run — full feature access, same quality
- No credit card required
- Perfect for testing and small watchlists
PAID Tier (Production Ready)
- Unlimited coins and pages per run
- Faster throughput for whole-market snapshots
- Pay-per-result: only charged for coins you keep
💰 Best price on the market — cheaper per coin than the leading crypto data alternatives.
❓ Frequently Asked Questions
Q: How many coins can I scrape? A: FREE tier: 25 per run. PAID tier: unlimited across as many pages as you need.
Q: Do I need an API key or account? A: No. Just set your filters and run.
Q: Which currencies are supported? A: USD, EUR, GBP, JPY, BTC and the other quote currencies the market supports.
Q: What output formats are available? A: JSON, CSV and Excel — export directly from the Apify dataset.
Q: What's the difference between Overview and Profile? A: Overview returns the bulk market list (cheapest, best for screening). Profile returns full per-coin detail (description, categories, homepage, sentiment).
Q: How fresh is the data? A: Each run fetches live market data at run time.
🐛 Troubleshooting
No coins returned in profile mode
- Make sure
coinIds(orstartUrl) is set — profile mode needs at least one coin ID or URL. - Use the coin slug (e.g.
bitcoin), not the ticker (btc).
Fewer coins than expected
- FREE tier is capped at 25 coins / 2 pages per run. Upgrade for the whole market.
A coin failed to fetch
- The data service occasionally rate-limits high-volume runs; the actor cools off and retries, and reports any failures in the HTML report.
⚖️ Is it legal to scrape data?
Our actors are ethical and do not extract any private user data, such as email addresses, gender, or location. They only extract what the user has chosen to share publicly. We therefore believe that our actors, when used for ethical purposes by Apify users, are safe.
However, you should be aware that your results could contain personal data. Personal data is protected by the GDPR in the European Union and by other regulations around the world. You should not scrape personal data unless you have a legitimate reason to do so. If you're unsure whether your reason is legitimate, consult your lawyers.
You can also read Apify's blog post on the legality of web scraping.
🤝 Support
Join our active support community
- For issues or questions, open an issue in the actor's repository
- Check SIÁN Agency Store for more automation tools
- 📧 apify@sian-agency.online
Disclaimer: This is an independent tool and is not affiliated with, endorsed by, or sponsored by CoinGecko. "CoinGecko" is a trademark of its respective owner. This actor extracts only publicly available market data.
Built by SIÁN Agency | More Tools