# BTC/USD Gemini Market Data

**Use case:** 

Retrieve current BTC/USD market data from Gemini with price, volume, bid, ask, and timestamp fields for analysis.

## Input

```json
{
  "symbol": "btcusd",
  "maxResults": 3
}
```

## Output

```json
{
  "bid": {
    "label": "Bid",
    "format": "text"
  },
  "ask": {
    "label": "Ask",
    "format": "text"
  },
  "last": {
    "label": "Last",
    "format": "text"
  },
  "base_volume": {
    "label": "Base Volume",
    "format": "number"
  },
  "quote_volume": {
    "label": "Quote Volume",
    "format": "number"
  },
  "timestamp": {
    "label": "Timestamp",
    "format": "date"
  },
  "source": {
    "label": "Source",
    "format": "text"
  },
  "scraped_at": {
    "label": "Scraped At",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Gemini Market Data Scraper - Public Ticker](https://apify.com/benthepythondev/gemini-market-data-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/benthepythondev/gemini-market-data-scraper) to learn more, explore other use cases, and run it yourself.