CoinGecko Scraper · Coin Prices, Market Caps & Exchanges avatar

CoinGecko Scraper · Coin Prices, Market Caps & Exchanges

Pricing

from $0.33 / 1,000 market record returneds

Go to Apify Store
CoinGecko Scraper · Coin Prices, Market Caps & Exchanges

CoinGecko Scraper · Coin Prices, Market Caps & Exchanges

Scrape CoinGecko coin prices, market caps, 24h volumes, supply and all-time highs in any of 63 quote currencies, plus the ranked exchange list with trust scores. Filter by category or specific coin ids. No login, no API key.

Pricing

from $0.33 / 1,000 market record returneds

Rating

0.0

(0)

Developer

Tarek Etman

Tarek Etman

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

an hour ago

Last modified

Share

reapX — public sources in, addressable records out

CoinGecko Scraper · Coin Prices, Market Caps & Exchanges

CoinGecko scraper for live cryptocurrency market data: coin prices, market caps, 24-hour volumes, circulating and maximum supply, all-time highs and lows, and percentage change across six windows - in any of 63 quote currencies. It also pulls CoinGecko's ranked exchange list with trust scores. No login, no API key, no browser.

Maintained by reapX. Every row cites the Apify run that produced it — nothing is inferred, modelled or filled in, and a field absent from the source is absent from the row. The extracted archive for this source is browsable at reapx.dev/data/coingecko-scraper/ and mirrored as an open dataset on Hugging Face and Kaggle. Questions: reapxdev@proton.me

What you get

One row per coin (or per exchange), with a stable id you can use as a primary key:

FieldExample
id / name / symbolbitcoin / Bitcoin / BTC
currentPrice / vsCurrency63456 / usd
marketCap / marketCapRank / fullyDilutedValuation1273247047393 / 1 / 1273247047393
totalVolume / high24h / low24h15886580511 / 63701 / 62758
priceChangePercentage1h … 1ysix windows: 1h, 24h, 7d, 14d, 30d, 1y
circulatingSupply / totalSupply / maxSupply20064906 / 20064906 / 21000000
ath / athDate / atl / atlDate126080 / 2025-10-06 / 67.81 / 2013-07-05

Exchange rows carry country, yearEstablished, trustScore, trustScoreRank and tradeVolume24hBtc.

Four named views ship with the dataset: Coin market data, Price performance, Supply and valuation and Exchanges.

Three ways to select coins

  • The whole market, ranked - leave everything at its default for the top 250 by market cap
  • By category - set a CoinGecko category id such as layer-1, decentralized-finance-defi, meme-token, artificial-intelligence, gaming, stablecoins or real-world-assets-rwa. There are 852 of them.
  • Specific coins - list CoinGecko coin ids (bitcoin, ethereum, solana) to fetch exactly those

Order by market cap or 24-hour volume, ascending or descending.

Rate limits are handled for you

CoinGecko's free public API allows roughly ten calls a minute and answers 429 with a Retry-After when you exceed it. This Actor paces its own requests, honours every Retry-After, and retries with backoff - so a large run slows down rather than failing. One request returns 250 records, so the default run costs a single call.

Input configuration

Every field is optional. The prefilled values below are what runs if you press Start without changing anything.

What to pull

CoinGecko's public API is free and needs no key. It is rate limited to roughly ten calls a minute, which this Actor respects automatically.

FieldTypeAcceptsWhat it does
dataTypestringcoins, exchangesCoin market data, or the ranked list of crypto exchanges. Each row is labelled with a recordType so a merged dataset stays readable. Prefilled with "coins".

Coin options

These apply when 'What to scrape' is set to Coins.

FieldTypeAcceptsWhat it does
vsCurrencystringfree textCurrency all prices and market caps are denominated in. CoinGecko supports 63, including usd, eur, gbp, jpy, btc and eth. Prefilled with "usd".
categorystringfree textRestrict to one CoinGecko category, using its id. Examples: layer-1, decentralized-finance-defi, meme-token, artificial-intelligence, gaming, stablecoins, real-world-assets-rwa. Leave empty for the whole market.
coinIdslistone value per lineCoinGecko coin ids, one per line, to fetch exactly those coins instead of a ranked page. Examples: bitcoin, ethereum, solana. When set, the category and ordering below are ignored.
orderstringone of 5: market_cap_desc, market_cap_asc, volume_desc, volume_asc, ...How the ranked page is sorted before it is returned. Prefilled with "market_cap_desc".

Size and pacing

CoinGecko serves 250 records per request. Larger runs page automatically, pausing between requests to stay inside the free tier's limit.

FieldTypeAcceptsWhat it does
maxItemsinteger1 to 20000Hard stop on how many records are returned and charged. Each record costs $0.0005. 250 records is one request and finishes in seconds. Prefilled with 250.
requestDelaySecsinteger3 to 60Seconds to wait between requests to CoinGecko. The free public tier allows roughly ten calls a minute, so 6 is a safe floor and 3 is the minimum this Actor allows. Raise it if you are running several jobs at once. Prefilled with 6.

Pricing

Pay per event. The primary event is Market record returned (market-record), charged at $0.0005 per event on the free plan, falling to $0.00021 on the highest tier.

Charged once for each CoinGecko record delivered as a complete row: for a coin, its price, market cap, rank, volume, supply, all-time high and low and six price-change windows; for an exchange, its trust score, country, launch year and BTC-denominated volume. Queries that match nothing, rate-limited requests that never return and blocked requests are never charged.

Other charged events: apify-actor-start (Actor Start).

Minimum charge cap per run: $0.005.

Tiered discounts apply automatically on every paid Apify plan. Platform usage is absorbed by the Actor, so the per-event price is the whole price.

Usage examples

The prefilled run, which is what Start does with nothing changed

{
"dataType": "coins",
"vsCurrency": "usd",
"order": "market_cap_desc",
"maxItems": 250,
"requestDelaySecs": 6
}

What to scrape

{
"dataType": "exchanges",
"vsCurrency": "usd",
"order": "market_cap_desc",
"maxItems": 250,
"requestDelaySecs": 6
}

Filter by quote currency

{
"dataType": "coins",
"vsCurrency": "eur",
"order": "market_cap_desc",
"maxItems": 250,
"requestDelaySecs": 6
}

Filter by category

{
"dataType": "coins",
"vsCurrency": "usd",
"order": "market_cap_desc",
"maxItems": 250,
"requestDelaySecs": 6,
"category": "layer-1"
}

Filter by specific coins

{
"dataType": "coins",
"vsCurrency": "usd",
"order": "market_cap_desc",
"maxItems": 250,
"requestDelaySecs": 6,
"coinIds": [
"bitcoin",
"ethereum"
]
}

Output example

One row, exactly as the actor wrote it to the dataset:

{
"recordType": "coin",
"id": "bitcoin",
"name": "Bitcoin",
"symbol": "BTC",
"url": "https://www.coingecko.com/en/coins/bitcoin",
"imageUrl": "https://coin-images.coingecko.com/coins/images/1/large/bitcoin.png?1696501400",
"vsCurrency": "usd",
"category": null,
"currentPrice": 62779,
"marketCap": 1259672740700,
"marketCapRank": 1,
"fullyDilutedValuation": 1259672740700,
"totalVolume": 15917503515,
"high24h": 63701,
"low24h": 62713,
"priceChange24h": -652.707541990836,
"priceChangePercentage1h": 0,
"priceChangePercentage24h": -1.2
}

That row carries 43 fields in total; 18 are shown.

Fields on every row

FieldTypeWhat it is
recordTypestringWhich kind of record this row is. Coin rows carry market data; exchange rows carry venue data. Use the named views to see one at a time.
idstringStable CoinGecko identifier - the coin id or the exchange id. Unique per record and safe to use as a primary key.
namestringDisplay name of the coin or exchange.
symbolstringTicker symbol, upper-cased. Coin rows only.
urlstringCoinGecko page for the coin, or the exchange's own website.
imageUrlstringLogo image for the coin or exchange.
vsCurrencystringCurrency every price and market-cap figure on this row is denominated in. Coin rows only.
categorystringCoinGecko category the run filtered on, when one was set. Coin rows only.
currentPricenumberLatest price in the quote currency.
marketCapnumberMarket capitalisation in the quote currency.
marketCapRankintegerRank by market capitalisation, 1 being the largest.
fullyDilutedValuationnumberValuation if the maximum supply were in circulation.
totalVolumenumberTotal traded volume over the last 24 hours, in the quote currency.
high24hnumberHighest price in the last 24 hours.
low24hnumberLowest price in the last 24 hours.
priceChange24hnumberAbsolute price change over the last 24 hours.
priceChangePercentage1hnumberPercentage price change over the last hour.
priceChangePercentage24hnumberPercentage price change over the last 24 hours.
priceChangePercentage7dnumberPercentage price change over the last 7 days.
priceChangePercentage14dnumberPercentage price change over the last 14 days.
priceChangePercentage30dnumberPercentage price change over the last 30 days.
priceChangePercentage1ynumberPercentage price change over the last year.
marketCapChange24hnumberAbsolute market cap change over the last 24 hours.
marketCapChangePercentage24hnumberPercentage market cap change over the last 24 hours.
circulatingSupplynumberUnits currently in circulation.
totalSupplynumberTotal units that exist.
maxSupplynumberHard cap on units that can ever exist, when the asset has one.
athnumberHighest price ever recorded, in the quote currency.
athChangePercentagenumberPercentage below the all-time high.
athDatestringWhen the all-time high was set, ISO 8601.
atlnumberLowest price ever recorded, in the quote currency.
atlChangePercentagenumberPercentage above the all-time low.
atlDatestringWhen the all-time low was set, ISO 8601.
lastUpdatedstringWhen CoinGecko last refreshed this coin, ISO 8601.
countrystringCountry the exchange is registered in. Exchange rows only.
yearEstablishedintegerYear the exchange launched. Exchange rows only.
trustScoreintegerCoinGecko trust score, 1 to 10. Exchange rows only.
trustScoreRankintegerRank by trust score, 1 being the highest. Exchange rows only.
tradeVolume24hBtcnumberExchange trading volume over 24 hours, denominated in BTC. Exchange rows only.
hasTradingIncentivetrue/falseTrue when the exchange runs a trading incentive scheme. Exchange rows only.
descriptionstringCoinGecko description of the exchange. Exchange rows only.
sourceQuerystringThe resolved query that produced this row, so a merged dataset stays traceable.
scrapedAtstringWhen this Actor read the row from CoinGecko, ISO 8601.

4 named dataset views ship with it: Coin market data, Price performance, Supply and valuation, Exchanges. They drive the Output tab in Console and the Output block on the Actor's .md page.

FAQ

Do I need a CoinGecko API key?

No. This Actor uses the free public endpoints, which need no key and no account.

Which quote currencies are supported?

63, including usd, eur, gbp, jpy, chf, aud, cad, inr, brl, and crypto quotes such as btc, eth and sol.

How do I find a category id?

CoinGecko publishes them at /api/v3/coins/categories/list. The id is the slug form, for example artificial-intelligence or real-world-assets-rwa.

How many coins can I get in one run?

Up to 20,000. Records come back 250 per request, and the Actor pages automatically with pacing that stays inside the free tier.

How fresh are the prices?

Read live on every run. Each coin row carries lastUpdated, CoinGecko's own refresh timestamp for that asset.

Can I use this from an AI agent?

Yes. The dataset schema types and documents every field, so the output chains directly into agent workflows through the Apify MCP server.


Unofficial - not affiliated with CoinGecko. Collects public data only. reapx. Contact reapxdev@proton.me.

The full published archive

Each archive page carries Dataset JSON-LD, a canonical URL and the identifiers used, so an agent can resolve an entity without running anything. Nothing on those pages is estimated or modelled.

🧪 Example input

A real, runnable configuration — this is an actual input this Actor has run with.

{
"dataType": "coins",
"vsCurrency": "usd",
"category": "",
"coinIds": [
"bitcoin",
"ethereum"
],
"order": "market_cap_desc",
"maxItems": 10,
"requestDelaySecs": 6
}

📄 Sample output

One real row from a real run of this Actor, unedited.

{
"recordType": "coin",
"id": "bitcoin",
"name": "Bitcoin",
"symbol": "BTC",
"url": "https://www.coingecko.com/en/coins/bitcoin",
"imageUrl": "https://coin-images.coingecko.com/coins/images/1/large/bitcoin.png?1696501400",
"vsCurrency": "usd",
"category": null,
"currentPrice": 62779,
"marketCap": 1259672740700,
"marketCapRank": 1,
"fullyDilutedValuation": 1259672740700,
"totalVolume": 15917503515,
"high24h": 63701,
"low24h": 62713,
"priceChange24h": -652.707541990836,
"priceChangePercentage1h": 0,
"priceChangePercentage24h": -1.2,
"priceChangePercentage7d": -3.8,
"priceChangePercentage14d": -2.7,
"priceChangePercentage30d": 0.2,
"priceChangePercentage1y": -44.7,
"marketCapChange24h": -13067311659.914795,
"marketCapChangePercentage24h": -1.02671,
"circulatingSupply": 20065062,
"totalSupply": 20065062,
"maxSupply": 21000000,
"ath": 126080,
"athChangePercentage": -50.20664,
"athDate": "2025-10-06T10:57:42.000Z",
"atl": 67.81,
"atlChangePercentage": 92482.70928,
"atlDate": "2013-07-05T16:00:00.000Z",
"lastUpdated": "2026-08-03T06:15:30.000Z",
"country": null,
"yearEstablished": null,
"trustScore": null,
"trustScoreRank": null,
"tradeVolume24hBtc": null,
"hasTradingIncentive": null,
"description": null,
"sourceQuery": "coins=bitcoin,ethereum in USD by market_cap_desc",
"scrapedAt": "2026-08-03T06:17:26Z"
}

How it works

  1. You set the filters below, or none at all.
  2. The Actor calls the source's own public endpoint and pages through the results.
  3. Every row is pushed to the dataset as it is built, not buffered to the end — so a run that hits its time limit still returns everything it collected up to that point.
  4. You are charged per row returned, so the maximum-results field is also your cost cap.

💬 Your feedback

Found a bug, or need a field this does not return yet? Open an issue on the Actor's Issues tab, or write to reapxdev@proton.me. Bugs get fixed and reasonable field requests get added.