# Binance USDT Pairs Price Scraper

**Use case:** 

Scrape live Binance crypto prices for USDT pairs ranked by quote volume. Real-time market data in clean structured JSON.

## Input

```json
{
  "quoteAsset": "USDT",
  "maxItems": 5,
  "sortBy": "quoteVolume"
}
```

## Output

```json
{
  "symbol": {
    "label": "Symbol",
    "format": "text"
  },
  "url": {
    "label": "Url",
    "format": "link"
  },
  "baseAsset": {
    "label": "Base Asset",
    "format": "text"
  },
  "quoteAsset": {
    "label": "Quote Asset",
    "format": "text"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "lastPrice": {
    "label": "Last Price",
    "format": "number"
  },
  "priceChange": {
    "label": "Price Change",
    "format": "number"
  },
  "priceChangePercent": {
    "label": "Price Change Percent",
    "format": "number"
  },
  "weightedAvgPrice": {
    "label": "Weighted Avg Price",
    "format": "number"
  },
  "prevClosePrice": {
    "label": "Prev Close Price",
    "format": "number"
  },
  "openPrice": {
    "label": "Open Price",
    "format": "number"
  },
  "highPrice24h": {
    "label": "High Price24h",
    "format": "number"
  },
  "lowPrice24h": {
    "label": "Low Price24h",
    "format": "number"
  },
  "bidPrice": {
    "label": "Bid Price",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [Binance Crypto Prices Scraper](https://apify.com/parseforge/binance-prices-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/binance-prices-scraper) to learn more, explore other use cases, and run it yourself.