# Bitstamp EUR Pairs Price Tickers Scraper

**Use case:** 

Scrape Bitstamp EUR trading pairs sorted by last price. Get live prices, 24h change and volume for each ticker as clean JSON.

## Input

```json
{
  "quoteCurrency": "EUR",
  "tradingFilter": "Enabled",
  "maxItems": 5,
  "fetchOhlc": false,
  "sortBy": "last"
}
```

## Output

```json
{
  "pair": {
    "label": "Pair",
    "format": "text"
  },
  "urlSymbol": {
    "label": "Url Symbol",
    "format": "text"
  },
  "url": {
    "label": "Url",
    "format": "link"
  },
  "base": {
    "label": "Base",
    "format": "text"
  },
  "quote": {
    "label": "Quote",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "trading": {
    "label": "Trading",
    "format": "text"
  },
  "instantAndMarketOrders": {
    "label": "Instant And Market Orders",
    "format": "text"
  },
  "minimumOrder": {
    "label": "Minimum Order",
    "format": "text"
  },
  "baseDecimals": {
    "label": "Base Decimals",
    "format": "number"
  },
  "counterDecimals": {
    "label": "Counter Decimals",
    "format": "number"
  },
  "marketType": {
    "label": "Market Type",
    "format": "text"
  },
  "last": {
    "label": "Last",
    "format": "number"
  },
  "bid": {
    "label": "Bid",
    "format": "number"
  }
}
```

## About this Actor

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