# Gemini BTC Pair Ticker Scraper

**Use case:** 

Scrape Gemini BTC-quoted trading pairs sorted by price. Get live crypto prices and market data from the Gemini exchange as structured data.

## Input

```json
{
  "quoteAsset": "BTC",
  "maxItems": 4,
  "sortBy": "price",
  "fetchDetails": false
}
```

## Output

```json
{
  "pair": {
    "label": "Pair",
    "format": "text"
  },
  "url": {
    "label": "Url",
    "format": "link"
  },
  "baseAsset": {
    "label": "Base Asset",
    "format": "text"
  },
  "quoteAsset": {
    "label": "Quote Asset",
    "format": "text"
  },
  "isPerpetual": {
    "label": "Is Perpetual",
    "format": "text"
  },
  "lastPrice": {
    "label": "Last Price",
    "format": "number"
  },
  "percentChange24hPercent": {
    "label": "Percent Change24h Percent",
    "format": "number"
  },
  "bid": {
    "label": "Bid",
    "format": "number"
  },
  "ask": {
    "label": "Ask",
    "format": "number"
  },
  "spreadAbs": {
    "label": "Spread Abs",
    "format": "number"
  },
  "spreadBps": {
    "label": "Spread Bps",
    "format": "number"
  },
  "volume24hBase": {
    "label": "Volume24h Base",
    "format": "number"
  },
  "volume24hQuote": {
    "label": "Volume24h Quote",
    "format": "number"
  },
  "volumeTimestamp": {
    "label": "Volume Timestamp",
    "format": "text"
  }
}
```

## About this Actor

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