# Btcusdt Binance Market Data

**Use case:** 

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

## Input

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

## Output

```json
{
  "symbol": {
    "label": "Symbol",
    "format": "text"
  },
  "last_price": {
    "label": "Last Price",
    "format": "number"
  },
  "price_change": {
    "label": "Price Change",
    "format": "number"
  },
  "price_change_percent": {
    "label": "Price Change Percent",
    "format": "number"
  },
  "weighted_average_price": {
    "label": "Weighted Average Price",
    "format": "number"
  },
  "open_price": {
    "label": "Open Price",
    "format": "number"
  },
  "high_price": {
    "label": "High Price",
    "format": "number"
  },
  "low_price": {
    "label": "Low Price",
    "format": "number"
  },
  "bid_price": {
    "label": "Bid Price",
    "format": "number"
  },
  "ask_price": {
    "label": "Ask Price",
    "format": "number"
  },
  "base_volume": {
    "label": "Base Volume",
    "format": "number"
  },
  "quote_volume": {
    "label": "Quote Volume",
    "format": "number"
  },
  "trade_count": {
    "label": "Trade Count",
    "format": "number"
  },
  "close_time": {
    "label": "Close Time",
    "format": "text"
  },
  "source": {
    "label": "Source",
    "format": "text"
  },
  "scraped_at": {
    "label": "Scraped At",
    "format": "date"
  }
}
```

## About this Actor

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