# Binance BTC Trading Pairs Price Scraper

**Use case:** 

Extract live price data for Bitcoin trading pairs on Binance. Get comprehensive spot price information for top trading pairs.

## Input

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

## 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.