# Bitfinex BTC Pairs Ticker Scraper

**Use case:** 

Pull Bitfinex BTC market pairs ranked by last price. Get live Bitcoin ticker data and prices in clean structured JSON.

## Input

```json
{
  "quoteAsset": "BTC",
  "maxItems": 5,
  "sortBy": "lastPrice"
}
```

## Output

```json
{
  "symbol": {
    "label": "Symbol",
    "format": "text"
  },
  "url": {
    "label": "Url",
    "format": "link"
  },
  "baseAsset": {
    "label": "Base Asset",
    "format": "text"
  },
  "quoteAsset": {
    "label": "Quote Asset",
    "format": "text"
  },
  "lastPrice": {
    "label": "Last Price",
    "format": "number"
  },
  "priceChange": {
    "label": "Price Change",
    "format": "number"
  },
  "priceChangePercent": {
    "label": "Price Change Percent",
    "format": "number"
  },
  "highPrice24h": {
    "label": "High Price24h",
    "format": "number"
  },
  "lowPrice24h": {
    "label": "Low Price24h",
    "format": "number"
  },
  "bidPrice": {
    "label": "Bid Price",
    "format": "number"
  },
  "bidSize": {
    "label": "Bid Size",
    "format": "number"
  },
  "askPrice": {
    "label": "Ask Price",
    "format": "number"
  },
  "askSize": {
    "label": "Ask Size",
    "format": "number"
  },
  "midPrice": {
    "label": "Mid Price",
    "format": "number"
  }
}
```

## About this Actor

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