CoinGecko Crypto Prices & Market Data Scraper avatar

CoinGecko Crypto Prices & Market Data Scraper

Pricing

from $3.00 / 1,000 results

Go to Apify Store
CoinGecko Crypto Prices & Market Data Scraper

CoinGecko Crypto Prices & Market Data Scraper

Scrapes cryptocurrency market data from CoinGecko public API. Supports market listings, trending coins, global stats, and individual coin details. Pure HTTP, no browser needed.

Pricing

from $3.00 / 1,000 results

Rating

0.0

(0)

Developer

oscar lira

oscar lira

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Categories

Share

Apify actor that scrapes cryptocurrency market data from the CoinGecko public API. Pure HTTP requests, no browser needed.

Features

  • Market Listings -- Top cryptocurrencies ranked by market cap with prices, volumes, and supply data.
  • Trending Coins -- Currently trending coins on CoinGecko.
  • Global Stats -- Overall market capitalization, volume, and dominance percentages.
  • Coin Detail -- Fetch specific coins by their CoinGecko ID.

Input

FieldTypeDefaultDescription
modeenummarketsOne of: markets, trending, global, coin_detail
vsCurrencystringusdQuote currency for prices (e.g. usd, eur, btc)
maxResultsinteger100Max results for markets mode (1-500)
coinIdsstring[][]CoinGecko coin IDs for coin_detail mode
categorystring""CoinGecko category slug to filter markets

Example Input

{
"mode": "markets",
"vsCurrency": "usd",
"maxResults": 50
}
{
"mode": "coin_detail",
"coinIds": ["bitcoin", "ethereum", "solana"],
"vsCurrency": "eur"
}

Output

Markets / Coin Detail

Each item contains:

FieldDescription
idCoinGecko identifier
symbolTicker symbol
nameFull name
currentPriceCurrent price in quote currency
marketCapMarket capitalization
marketCapRankRank by market cap
volume24h24-hour trading volume
priceChange24hAbsolute 24h price change
priceChangePercent24hPercentage 24h price change
high24h / low24h24-hour high and low
ath / athDateAll-time high price and date
circulatingSupplyCirculating supply
totalSupplyTotal supply
imageCoin image URL

Returns trending coins with id, symbol, name, marketCapRank, priceBtc, priceUsd, score, thumb, marketCap, totalVolume.

Global

Single item with activeCryptocurrencies, markets, totalMarketCapUsd, totalVolumeUsd, btcDominance, ethDominance, marketCapChangePercent24hUsd, marketCapPercentage, updatedAt.

Rate Limiting

The actor uses CoinGecko's free API tier which allows 10-30 requests per minute. A 2.5-second delay is applied between paginated requests, with exponential backoff on 429 responses.

Technical Details

  • Runtime: Node.js 20 (Alpine)
  • No browser or Puppeteer needed
  • Uses native fetch API only
  • Pagination: up to 250 items per page, automatically paginated for larger requests