# Scrape trending crypto coins today

**Use case:** 

Get CoinMarketCap trending, most-visited and most-searched coins: CMC rank, name, symbol, price, market cap, 24h volume and % change. Export to CSV.

## Input

```json
{
  "mode": "spotlight",
  "searchQueries": [
    "bitcoin",
    "ethereum",
    "solana"
  ],
  "vsCurrency": "usd",
  "sortBy": "market_cap",
  "sortType": "desc",
  "cryptoType": "all",
  "exchangeCategory": "spot",
  "pairCategory": "all",
  "historyDays": "90",
  "spotlightLists": [
    "trending",
    "mostVisited",
    "mostSearched"
  ],
  "enrichCoinDetails": false,
  "enrichExchangeDetails": false,
  "maxResults": 100,
  "deduplicateResults": true,
  "monitorMode": false,
  "monitorKey": "default",
  "maxConcurrency": 4,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "cmcRank": {
    "label": "Rank",
    "format": "number"
  },
  "name": {
    "label": "Coin",
    "format": "text"
  },
  "symbol": {
    "label": "Symbol",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "marketCap": {
    "label": "Market cap",
    "format": "number"
  },
  "percentChange1h": {
    "label": "1h %",
    "format": "number"
  },
  "percentChange24h": {
    "label": "24h %",
    "format": "number"
  },
  "percentChange7d": {
    "label": "7d %",
    "format": "number"
  },
  "volume24h": {
    "label": "24h volume",
    "format": "number"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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