# Top crypto exchanges by 24h volume

**Use case:** 

Rank the top spot crypto exchanges by volume: trust score, 24h volume, market share, markets, coins listed and maker/taker fees. Export to CSV.

## Input

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

## Output

```json
{
  "name": {
    "label": "Exchange",
    "format": "text"
  },
  "score": {
    "label": "Score",
    "format": "number"
  },
  "totalVol24h": {
    "label": "24h volume",
    "format": "number"
  },
  "marketSharePct": {
    "label": "Market share %",
    "format": "number"
  },
  "numMarkets": {
    "label": "# Markets",
    "format": "number"
  },
  "numCoins": {
    "label": "# Coins",
    "format": "number"
  },
  "makerFee": {
    "label": "Maker fee",
    "format": "number"
  },
  "takerFee": {
    "label": "Taker fee",
    "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.