# 🦎 CoinGecko Scraper — Prices, Market Cap & Volume

**Use case:** 

No-code, cheap CoinGecko API. Scrape CoinGecko data: crypto price, market cap, rank, 24h volume, 24h change, ATH, ATL, supply, trending — cheapest per item.

## Input

```json
{
  "coins": [],
  "maxCoins": 100,
  "vsCurrency": "usd",
  "includeTrending": false,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "id": {
    "label": "Id",
    "format": "text"
  },
  "symbol": {
    "label": "Symbol",
    "format": "text"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "image": {
    "label": "Image",
    "format": "image"
  },
  "currentPrice": {
    "label": "Current Price",
    "format": "number"
  },
  "marketCap": {
    "label": "Market Cap",
    "format": "number"
  },
  "marketCapRank": {
    "label": "Market Cap Rank",
    "format": "number"
  },
  "fullyDilutedValuation": {
    "label": "Fully Diluted Valuation",
    "format": "number"
  },
  "totalVolume": {
    "label": "Total Volume",
    "format": "number"
  },
  "high24h": {
    "label": "High24h",
    "format": "number"
  },
  "low24h": {
    "label": "Low24h",
    "format": "number"
  },
  "priceChange24h": {
    "label": "Price Change24h",
    "format": "number"
  },
  "priceChangePct24h": {
    "label": "Price Change Pct24h",
    "format": "number"
  },
  "circulatingSupply": {
    "label": "Circulating Supply",
    "format": "number"
  },
  "totalSupply": {
    "label": "Total Supply",
    "format": "number"
  },
  "maxSupply": {
    "label": "Max Supply",
    "format": "number"
  },
  "ath": {
    "label": "Ath",
    "format": "number"
  },
  "athChangePct": {
    "label": "Ath Change Pct",
    "format": "number"
  },
  "athDate": {
    "label": "Ath Date",
    "format": "date"
  },
  "atl": {
    "label": "Atl",
    "format": "number"
  },
  "atlDate": {
    "label": "Atl Date",
    "format": "date"
  },
  "lastUpdated": {
    "label": "Last Updated",
    "format": "date"
  },
  "isTrending": {
    "label": "Is Trending",
    "format": "boolean"
  }
}
```

## About this Actor

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