# Track Top Cryptocurrency Markets

**Use case:** 

Track top cryptocurrency markets with prices, market caps, rank, volume, 24-hour changes, and CoinGecko source data in USD.

## Input

```json
{
  "mode": "markets",
  "coinIds": [
    "bitcoin",
    "ethereum"
  ],
  "vsCurrency": "usd",
  "vsCurrencies": [
    "usd"
  ],
  "order": "market_cap_desc",
  "days": 7,
  "includeDetails": true,
  "maxResults": 3
}
```

## Output

```json
{
  "name": {
    "label": "Coin",
    "format": "text"
  },
  "symbol": {
    "label": "Symbol"
  },
  "current_price": {
    "label": "Price",
    "format": "number"
  },
  "market_cap_rank": {
    "label": "Market cap rank"
  },
  "price_change_percentage_24h": {
    "label": "24h Change",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [🪙 Crypto Intelligence - CoinGecko Market Data](https://apify.com/benthepythondev/crypto-intelligence) with a specific input configuration. Visit the [Actor detail page](https://apify.com/benthepythondev/crypto-intelligence) to learn more, explore other use cases, and run it yourself.