# Bitcoin market pairs by exchange

**Use case:** 

List all Bitcoin spot market pairs: exchange, trading pair, price, USD volume, volume %, liquidity score and market URL. No login, export to CSV.

## Input

```json
{
  "mode": "marketPairs",
  "searchQueries": [
    "bitcoin",
    "ethereum",
    "solana"
  ],
  "coinIds": [
    "bitcoin"
  ],
  "vsCurrency": "usd",
  "sortBy": "market_cap",
  "sortType": "desc",
  "cryptoType": "all",
  "exchangeCategory": "spot",
  "pairCategory": "spot",
  "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
{
  "coinSymbol": {
    "label": "Coin",
    "format": "text"
  },
  "exchangeName": {
    "label": "Exchange",
    "format": "text"
  },
  "marketPair": {
    "label": "Pair",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "volumeUsd": {
    "label": "24h volume (USD)",
    "format": "number"
  },
  "volumePercent": {
    "label": "Volume %",
    "format": "number"
  },
  "effectiveLiquidity": {
    "label": "Liquidity",
    "format": "number"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "marketUrl": {
    "label": "Market 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.