# MEXC Crypto Tickers Scraper

**Use case:** 

Get top MEXC crypto tickers by quote volume with live prices and 24h stats in clean structured data for analytics.

## 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"
  },
  "priceChange": {
    "label": "Price Change",
    "format": "number"
  },
  "priceChangePercent": {
    "label": "Price Change Percent",
    "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"
  },
  "bidQty": {
    "label": "Bid Qty",
    "format": "number"
  },
  "askPrice": {
    "label": "Ask Price",
    "format": "number"
  }
}
```

## About this Actor

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