# Crypto Market Data Scraper (No Login) (`scrapemint/crypto-market-data-scraper`) Actor

Live crypto market data from CoinGecko. One row per coin with price, market cap and rank, volume, fully diluted valuation, circulating/total/max supply, all-time high and low, and 1h/24h/7d/30d price change. No login, no API key. Pay per row.

- **URL**: https://apify.com/scrapemint/crypto-market-data-scraper.md
- **Developed by:** [Ken M](https://apify.com/scrapemint) (community)
- **Categories:** Business, E-commerce, Marketing
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$4.00 / 1,000 coin rows

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Crypto Market Data Scraper (No Login)

Pull live crypto market data straight from CoinGecko and get one clean row per coin. No login, no API key, no browser. Scan the whole market by rank, or pass a list of specific coins.

### What you get

One row per coin, with:

- `id`, `symbol`, `name`
- `currentPrice`, `vsCurrency`
- `marketCap`, `marketCapRank`, `fullyDilutedValuation`
- `totalVolume`, `high24h`, `low24h`
- `priceChange24h`, `priceChangePct1h`, `priceChangePct24h`, `priceChangePct7d`, `priceChangePct30d`
- `circulatingSupply`, `totalSupply`, `maxSupply`
- `ath`, `athChangePct`, `athDate`, `atl`, `atlChangePct`, `atlDate`
- `lastUpdated`, `url`, `scrapedAt`

### Input

- `vsCurrency` (default `usd`; also `eur`, `btc`, etc.)
- `order` (market cap or volume, ascending or descending)
- `coinIds` (optional list like `bitcoin`, `ethereum`, `solana`; leave empty to scan the whole market by rank)
- `category` (optional CoinGecko category, e.g. `layer-1`, `decentralized-finance-defi`, `meme-token`, `artificial-intelligence`)
- `priceChangeWindows` (comma separated, any of `1h,24h,7d,14d,30d,200d,1y`)
- `maxCoins` (cap across pages)

### Example input

```json
{
  "vsCurrency": "usd",
  "order": "market_cap_desc",
  "priceChangeWindows": "1h,24h,7d,30d",
  "maxCoins": 250
}
```

Track a specific watchlist:

```json
{
  "vsCurrency": "usd",
  "coinIds": ["bitcoin", "ethereum", "solana", "chainlink"]
}
```

### Pricing

Pay per row. The first 25 rows of every run are free so you can validate output before you scale up. You only pay for the coins you keep.

### Notes

- Data comes from CoinGecko's public market endpoint, so values match the site.
- Proxy is off by default because the endpoint is a tolerant public API; supply a proxy only if you run very large pulls and hit rate limits.
- This Actor reads only public data and never logs in.

# Actor input Schema

## `vsCurrency` (type: `string`):

Currency to price coins in, e.g. usd, eur, btc.

## `order` (type: `string`):

How to rank coins.

## `coinIds` (type: `array`):

Optional. Restrict to these CoinGecko coin IDs, e.g. bitcoin, ethereum, solana. Leave empty to scan the whole market by rank.

## `category` (type: `string`):

Optional CoinGecko category filter, e.g. layer-1, decentralized-finance-defi, meme-token, artificial-intelligence.

## `priceChangeWindows` (type: `string`):

Comma separated windows to include as percent change columns. Any of: 1h,24h,7d,14d,30d,200d,1y.

## `maxCoins` (type: `integer`):

Maximum number of coins to return across all pages. First 25 rows per run are free.

## `proxyConfiguration` (type: `object`):

Optional. The API is keyless and tolerant, so proxy is off by default. Supply one only if you run very large pulls and hit rate limits.

## Actor input object example

```json
{
  "vsCurrency": "usd",
  "order": "market_cap_desc",
  "priceChangeWindows": "1h,24h,7d,30d",
  "maxCoins": 100
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "vsCurrency": "usd",
    "priceChangeWindows": "1h,24h,7d,30d",
    "maxCoins": 100
};

// Run the Actor and wait for it to finish
const run = await client.actor("scrapemint/crypto-market-data-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "vsCurrency": "usd",
    "priceChangeWindows": "1h,24h,7d,30d",
    "maxCoins": 100,
}

# Run the Actor and wait for it to finish
run = client.actor("scrapemint/crypto-market-data-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "vsCurrency": "usd",
  "priceChangeWindows": "1h,24h,7d,30d",
  "maxCoins": 100
}' |
apify call scrapemint/crypto-market-data-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=scrapemint/crypto-market-data-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/jqKq5WtWMRGmSxR7c/builds/gsg1ZjX3b6ooP4wdP/openapi.json
