# Gate.io USDT Pairs Ticker Scraper

**Use case:** 

Extract Gate.io USDT trading pairs sorted by volume with live prices and market stats as structured JSON data.

## 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"
  },
  "lastPrice": {
    "label": "Last Price",
    "format": "number"
  },
  "priceChangePercent": {
    "label": "Price Change Percent",
    "format": "number"
  },
  "highPrice24h": {
    "label": "High Price24h",
    "format": "number"
  },
  "lowPrice24h": {
    "label": "Low Price24h",
    "format": "number"
  },
  "bidPrice": {
    "label": "Bid Price",
    "format": "number"
  },
  "askPrice": {
    "label": "Ask Price",
    "format": "number"
  },
  "spreadAbs": {
    "label": "Spread Abs",
    "format": "number"
  },
  "spreadBps": {
    "label": "Spread Bps",
    "format": "number"
  },
  "volume24h": {
    "label": "Volume24h",
    "format": "number"
  },
  "quoteVolume24h": {
    "label": "Quote Volume24h",
    "format": "number"
  }
}
```

## About this Actor

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