# Top 200 Crypto Pairs Live Data from Gate.io

**Use case:** 

Get live price data for the top 200 crypto pairs on Gate.io, sorted by quote volume, in CSV or JSON format.

## Input

```json
{
  "quoteCurrency": "",
  "quoteCurrencies": [],
  "sortBy": "quote_volume",
  "maxPairs": 200,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "currencyPair": {
    "label": "Pair",
    "format": "text"
  },
  "lastPrice": {
    "label": "Last",
    "format": "number"
  },
  "changePercent24h": {
    "label": "24h %",
    "format": "number"
  },
  "high24h": {
    "label": "24h High",
    "format": "number"
  },
  "low24h": {
    "label": "24h Low",
    "format": "number"
  },
  "baseVolume": {
    "label": "Base Vol",
    "format": "number"
  },
  "quoteVolume": {
    "label": "Quote Vol",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [Gate.io Market Data Scraper - 2,200+ Crypto Pairs](https://apify.com/logiover/gateio-market-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/gateio-market-scraper) to learn more, explore other use cases, and run it yourself.