# XBT/USD Kraken Market Data

**Use case:** 

Retrieve current XBT/USD market data from Kraken with price, volume, bid, ask, highs, lows, and timestamps.

## Input

```json
{
  "pair": "XBTUSD",
  "maxResults": 3
}
```

## Output

```json
{
  "pair": {
    "label": "Pair",
    "format": "text"
  },
  "ask": {
    "label": "Ask",
    "format": "text"
  },
  "bid": {
    "label": "Bid",
    "format": "text"
  },
  "last": {
    "label": "Last",
    "format": "text"
  },
  "volume_24h": {
    "label": "Volume 24H",
    "format": "number"
  },
  "vwap_24h": {
    "label": "Vwap 24H",
    "format": "text"
  },
  "trades_24h": {
    "label": "Trades 24H",
    "format": "text"
  },
  "low_24h": {
    "label": "Low 24H",
    "format": "text"
  },
  "high_24h": {
    "label": "High 24H",
    "format": "text"
  },
  "open": {
    "label": "Open",
    "format": "text"
  },
  "source": {
    "label": "Source",
    "format": "text"
  },
  "scraped_at": {
    "label": "Scraped At",
    "format": "date"
  }
}
```

## About this Actor

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