# Top 100 Crypto by Market Cap to CSV - CoinGecko

**Use case:** 

Ranked top 100 coins from CoinGecko with price, 24h and 7d change, volume, circulating supply, and ATH. Export the market cap table to CSV or JSON.

## Input

```json
{
  "mode": "markets",
  "vsCurrency": "usd",
  "query": "solana",
  "coinIds": [
    "bitcoin",
    "ethereum"
  ],
  "maxItems": 100,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "marketCapRank": {
    "label": "Rank",
    "format": "number"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "symbol": {
    "label": "Symbol",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "marketCap": {
    "label": "Market cap",
    "format": "number"
  },
  "change24hPct": {
    "label": "24h %",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [CoinGecko Crypto Market Scraper](https://apify.com/dami_studio/coingecko-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/dami_studio/coingecko-scraper) to learn more, explore other use cases, and run it yourself.