# Btcusdt Bybit Market Data

**Use case:** 

Explore BTCUSDT with Bybit Market Data Scraper - Spot Tickers. Run the tested configuration and export structured results as JSON, CSV, or Excel.

## Input

```json
{
  "query": "BTCUSDT",
  "maxResults": 3
}
```

## Output

```json
{
  "symbol": {
    "label": "Symbol",
    "format": "text"
  },
  "bid_price": {
    "label": "Bid Price",
    "format": "number"
  },
  "ask_price": {
    "label": "Ask Price",
    "format": "number"
  },
  "last_price": {
    "label": "Last Price",
    "format": "number"
  },
  "previous_price_24h": {
    "label": "Previous Price 24H",
    "format": "number"
  },
  "price_change_24h": {
    "label": "Price Change 24H",
    "format": "number"
  },
  "high_24h": {
    "label": "High 24H",
    "format": "text"
  },
  "low_24h": {
    "label": "Low 24H",
    "format": "text"
  },
  "volume_24h": {
    "label": "Volume 24H",
    "format": "number"
  },
  "turnover_24h": {
    "label": "Turnover 24H",
    "format": "text"
  },
  "source": {
    "label": "Source",
    "format": "text"
  },
  "scraped_at": {
    "label": "Scraped At",
    "format": "date"
  }
}
```

## About this Actor

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