# BTC/USDT KuCoin Market Data

**Use case:** 

Retrieve current BTC/USDT market data from KuCoin with price, volume, bid, ask, change, highs, lows, and timestamps.

## Input

```json
{
  "query": "BTC-USDT",
  "maxResults": 3
}
```

## Output

```json
{
  "symbol": {
    "label": "Symbol",
    "format": "text"
  },
  "symbol_name": {
    "label": "Symbol Name",
    "format": "text"
  },
  "last": {
    "label": "Last",
    "format": "text"
  },
  "buy": {
    "label": "Buy",
    "format": "text"
  },
  "sell": {
    "label": "Sell",
    "format": "text"
  },
  "change_rate": {
    "label": "Change Rate",
    "format": "text"
  },
  "change_price": {
    "label": "Change Price",
    "format": "number"
  },
  "high": {
    "label": "High",
    "format": "text"
  },
  "low": {
    "label": "Low",
    "format": "text"
  },
  "volume": {
    "label": "Volume",
    "format": "number"
  },
  "volume_value": {
    "label": "Volume Value",
    "format": "number"
  },
  "average_price": {
    "label": "Average Price",
    "format": "number"
  },
  "source": {
    "label": "Source",
    "format": "text"
  },
  "scraped_at": {
    "label": "Scraped At",
    "format": "date"
  }
}
```

## About this Actor

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