# CoinMarketCap DeFi category token scraper

**Use case:** 

Export CoinMarketCap DeFi category coins with prices, market caps, volumes, ranks, and 24-hour percentage changes.

## Input

```json
{
  "mode": "category",
  "maxResults": 75,
  "category": "defi",
  "coinSlugs": [
    "bitcoin",
    "ethereum",
    "solana"
  ],
  "sortBy": "market_cap",
  "includeDetail": false
}
```

## Output

```json
{
  "cmcRank": {
    "label": "Rank",
    "format": "number"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "symbol": {
    "label": "Symbol",
    "format": "text"
  },
  "price": {
    "label": "Price (USD)",
    "format": "number"
  },
  "percentChange1h": {
    "label": "1h %",
    "format": "number"
  },
  "percentChange24h": {
    "label": "24h %",
    "format": "number"
  },
  "percentChange7d": {
    "label": "7d %",
    "format": "number"
  },
  "marketCap": {
    "label": "Market Cap",
    "format": "number"
  },
  "volume24h": {
    "label": "Volume (24h)",
    "format": "number"
  },
  "circulatingSupply": {
    "label": "Circulating Supply",
    "format": "number"
  }
}
```

## About this Actor

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