# KuCoin Crypto Tickers Scraper

**Use case:** 

Scrape KuCoin market tickers ranked by quote volume. Get live crypto prices, 24h volume and change percent for all pairs.

## Input

```json
{
  "quoteAsset": "",
  "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"
  },
  "averagePrice": {
    "label": "Average Price",
    "format": "number"
  },
  "priceChange": {
    "label": "Price Change",
    "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"
  }
}
```

## About this Actor

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