# Kraken BTC ETH Ticker Scraper

**Use case:** 

Track Bitcoin and Ethereum ticker data on Kraken with live prices and 24h volume in a clean structured export.

## Input

```json
{
  "pairs": [
    "XBT/USD",
    "ETH/USD"
  ],
  "maxItems": 5,
  "sortBy": "volume24h"
}
```

## Output

```json
{
  "pair": {
    "label": "Pair",
    "format": "text"
  },
  "url": {
    "label": "Url",
    "format": "link"
  },
  "altname": {
    "label": "Altname",
    "format": "text"
  },
  "baseAsset": {
    "label": "Base Asset",
    "format": "text"
  },
  "quoteAsset": {
    "label": "Quote Asset",
    "format": "text"
  },
  "lastPrice": {
    "label": "Last Price",
    "format": "number"
  },
  "lastTradeVolume": {
    "label": "Last Trade Volume",
    "format": "number"
  },
  "askPrice": {
    "label": "Ask Price",
    "format": "number"
  },
  "askVolume": {
    "label": "Ask Volume",
    "format": "number"
  },
  "bidPrice": {
    "label": "Bid Price",
    "format": "number"
  },
  "bidVolume": {
    "label": "Bid Volume",
    "format": "number"
  },
  "spreadAbs": {
    "label": "Spread Abs",
    "format": "number"
  },
  "spreadBps": {
    "label": "Spread Bps",
    "format": "number"
  },
  "high24h": {
    "label": "High24h",
    "format": "number"
  }
}
```

## About this Actor

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