# Bitcoin price history - 1 year OHLCV

**Use case:** 

Export 1 year of Bitcoin daily OHLCV: first and last price, period high & low, % change and daily candle points. No API key, export to CSV.

## Input

```json
{
  "mode": "historical",
  "searchQueries": [
    "bitcoin",
    "ethereum",
    "solana"
  ],
  "coinIds": [
    "bitcoin"
  ],
  "vsCurrency": "usd",
  "sortBy": "market_cap",
  "sortType": "desc",
  "cryptoType": "all",
  "exchangeCategory": "spot",
  "pairCategory": "all",
  "historyDays": "365",
  "spotlightLists": [
    "trending",
    "gainers",
    "losers",
    "mostVisited",
    "recentlyAdded"
  ],
  "enrichCoinDetails": false,
  "enrichExchangeDetails": false,
  "maxResults": 100,
  "deduplicateResults": true,
  "monitorMode": false,
  "monitorKey": "default",
  "maxConcurrency": 4,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "name": {
    "label": "Coin",
    "format": "text"
  },
  "symbol": {
    "label": "Symbol",
    "format": "text"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "approxIntervalHours": {
    "label": "~Interval (h)",
    "format": "number"
  },
  "pointCount": {
    "label": "# Points",
    "format": "number"
  },
  "firstPrice": {
    "label": "First",
    "format": "number"
  },
  "lastPrice": {
    "label": "Last",
    "format": "number"
  },
  "priceChangePercent": {
    "label": "Change %",
    "format": "number"
  },
  "periodHigh": {
    "label": "High",
    "format": "number"
  },
  "periodLow": {
    "label": "Low",
    "format": "number"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [CoinMarketCap Scraper - Crypto Prices, Market Cap & Exchanges](https://apify.com/scrapesage/coinmarketcap-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapesage/coinmarketcap-scraper) to learn more, explore other use cases, and run it yourself.