# ETH Trading Pairs Volume Monitor for Binance

**Use case:** 

Track ETH trading pairs and their volumes on Binance. Obtain real-time data on the top 100 active pairs to inform your trading decisions.

## Input

```json
{
  "quoteAssets": [
    "ETH"
  ],
  "minQuoteVolume": 0,
  "sortBy": "quoteVolume",
  "tradingOnly": true,
  "maxPairs": 100
}
```

## Output

```json
{
  "symbol": {
    "label": "Symbol",
    "format": "text"
  },
  "baseAsset": {
    "label": "Base asset",
    "format": "text"
  },
  "quoteAsset": {
    "label": "Quote asset",
    "format": "text"
  },
  "lastPrice": {
    "label": "Last price",
    "format": "number"
  },
  "priceChangePercent": {
    "label": "24h change %",
    "format": "number"
  },
  "highPrice": {
    "label": "24h high",
    "format": "number"
  },
  "lowPrice": {
    "label": "24h low",
    "format": "number"
  },
  "quoteVolume": {
    "label": "24h quote volume",
    "format": "number"
  },
  "tradeCount": {
    "label": "24h trade count",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [Binance API Scraper - Spot Prices for 3,500+ Pairs](https://apify.com/logiover/binance-spot-market-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/binance-spot-market-scraper) to learn more, explore other use cases, and run it yourself.