# Top USDT Price Gainers on Binance

**Use case:** 

Identify the top price gainers for USDT among 3,500+ trading pairs. Retrieve a ranked list based on price change percentage.

## Input

```json
{
  "quoteAssets": [
    "USDT"
  ],
  "minQuoteVolume": 0,
  "sortBy": "priceChangePercent",
  "tradingOnly": true,
  "maxPairs": 50
}
```

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