# CoinGecko Crypto Volume EUR Scraper

**Use case:** 

Track the most-traded cryptocurrencies by 24h volume priced in EUR from CoinGecko, delivered as structured, export-ready data.

## Input

```json
{
  "vsCurrency": "eur",
  "maxItems": 5,
  "order": "volume_desc"
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Image Url",
    "format": "link"
  },
  "id": {
    "label": "Id",
    "format": "text"
  },
  "symbol": {
    "label": "Symbol",
    "format": "text"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "url": {
    "label": "Url",
    "format": "link"
  },
  "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"
  },
  "priceChangePercentage1h": {
    "label": "Price Change Percentage1h",
    "format": "number"
  }
}
```

## About this Actor

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