# Bitcoin and Ethereum Crypto Prices - CoinGecko

**Use case:** 

Get Bitcoin and Ethereum market data from CoinGecko, including prices, market caps, volume, 24h changes, highs, lows, supply, and ATH data.

## Input

```json
{
  "coinIds": [
    "bitcoin",
    "ethereum"
  ],
  "searchQueries": [],
  "maxSearchResults": 1,
  "topCoins": 0,
  "vsCurrency": "usd",
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Image",
    "format": "image"
  },
  "marketCapRank": {
    "label": "Rank",
    "format": "number"
  },
  "id": {
    "label": "Coin ID",
    "format": "text"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "symbol": {
    "label": "Symbol",
    "format": "text"
  },
  "currentPrice": {
    "label": "Price",
    "format": "number"
  },
  "vsCurrency": {
    "label": "Currency",
    "format": "text"
  },
  "marketCap": {
    "label": "Market Cap",
    "format": "number"
  },
  "totalVolume": {
    "label": "Volume 24h",
    "format": "number"
  },
  "priceChangePercentage24h": {
    "label": "Change 24h %",
    "format": "number"
  },
  "high24h": {
    "label": "High 24h",
    "format": "number"
  },
  "low24h": {
    "label": "Low 24h",
    "format": "number"
  },
  "circulatingSupply": {
    "label": "Circulating",
    "format": "number"
  },
  "maxSupply": {
    "label": "Max Supply",
    "format": "number"
  },
  "ath": {
    "label": "ATH",
    "format": "number"
  },
  "athDate": {
    "label": "ATH Date",
    "format": "date"
  },
  "atl": {
    "label": "ATL",
    "format": "number"
  },
  "lastUpdated": {
    "label": "Last Updated",
    "format": "date"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "text"
  }
}
```

## About this Actor

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