# Bybit Spot Tickers Scraper

**Use case:** 

Scrape Bybit spot market tickers ranked by 24h turnover. Get live prices, volume and change for top crypto pairs.

## Input

```json
{
  "category": "spot",
  "maxItems": 5,
  "sortBy": "turnover24h"
}
```

## Output

```json
{
  "symbol": {
    "label": "Symbol",
    "format": "text"
  },
  "url": {
    "label": "Url",
    "format": "link"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "lastPrice": {
    "label": "Last Price",
    "format": "number"
  },
  "prevPrice24h": {
    "label": "Prev Price24h",
    "format": "number"
  },
  "priceChange24h": {
    "label": "Price Change24h",
    "format": "number"
  },
  "price24hPercent": {
    "label": "Price24h Percent",
    "format": "number"
  },
  "high24h": {
    "label": "High24h",
    "format": "number"
  },
  "low24h": {
    "label": "Low24h",
    "format": "number"
  },
  "bidPrice": {
    "label": "Bid Price",
    "format": "number"
  },
  "bidSize": {
    "label": "Bid Size",
    "format": "number"
  },
  "askPrice": {
    "label": "Ask Price",
    "format": "number"
  },
  "askSize": {
    "label": "Ask Size",
    "format": "number"
  },
  "spreadAbs": {
    "label": "Spread Abs",
    "format": "number"
  }
}
```

## About this Actor

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