# Scrape Ethereum profile and official links

**Use case:** 

Export Ethereum price, rank, supply, description, and official link fields from CoinMarketCap.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://coinmarketcap.com/currencies/ethereum/"
    }
  ],
  "slugs": [
    "bitcoin",
    "ethereum"
  ],
  "maxItems": 1,
  "includeDescription": true,
  "includeOfficialLinks": true,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "rank": {
    "label": "Rank",
    "format": "integer"
  },
  "name": {
    "label": "Name",
    "format": "string"
  },
  "symbol": {
    "label": "Symbol",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "marketCap": {
    "label": "Market cap",
    "format": "number"
  },
  "volume24h": {
    "label": "24h volume",
    "format": "number"
  },
  "percentChange24h": {
    "label": "24h percent change",
    "format": "number"
  },
  "circulatingSupply": {
    "label": "Circulating supply",
    "format": "number"
  },
  "url": {
    "label": "CoinMarketCap URL",
    "format": "string"
  },
  "lastUpdated": {
    "label": "Last updated",
    "format": "string"
  }
}
```

## About this Actor

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