# Collect Stellar price and profile data

**Use case:** 

Scrape Stellar CoinMarketCap profile data for payments-sector research and market monitoring.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://coinmarketcap.com/"
    },
    {
      "url": "https://coinmarketcap.com/currencies/bitcoin/"
    }
  ],
  "slugs": [
    "stellar"
  ],
  "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.