# Gemini Crypto Exchange Scraper

**Use case:** 

Scrape Gemini exchange tickers sorted by 24h percent change, with bid/ask and volume details. Get live crypto market data as structured JSON.

## Input

```json
{
  "quoteAsset": "",
  "maxItems": 5,
  "sortBy": "percentChange24h",
  "fetchDetails": true
}
```

## 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.