# Crypto Price Tracker

**Use case:** 

Track cryptocurrency prices and performance: current price plus 24h, 7d and 30d change and all-time high per coin, from CoinGecko. JSON or CSV.

## Input

```json
{
  "apiKey": "***",
  "mode": "market",
  "vsCurrency": "usd",
  "days": "30",
  "maxResults": 25
}
```

## Output

```json
{
  "marketCapRank": {
    "label": "Market Cap Rank",
    "format": "integer"
  },
  "name": {
    "label": "Name",
    "format": "string"
  },
  "symbol": {
    "label": "Symbol",
    "format": "string"
  },
  "currentPrice": {
    "label": "Current Price",
    "format": "number"
  },
  "priceChange24h": {
    "label": "24h Change %",
    "format": "number"
  },
  "priceChange7d": {
    "label": "7d Change %",
    "format": "number"
  },
  "priceChange30d": {
    "label": "30d Change %",
    "format": "number"
  },
  "allTimeHigh": {
    "label": "All-Time High",
    "format": "number"
  },
  "allTimeHighDate": {
    "label": "ATH Date",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [CoinGecko Crypto — Data, Signals & Market Events](https://apify.com/ryanclinton/coingecko-crypto-data) with a specific input configuration. Visit the [Actor detail page](https://apify.com/ryanclinton/coingecko-crypto-data) to learn more, explore other use cases, and run it yourself.