# CoinPaprika Crypto Tickers Scraper

**Use case:** 

Scrape top crypto tickers from CoinPaprika in USD, sorted by rank. Get price, market cap and 24h volume as structured data.

## Input

```json
{
  "quoteCurrency": "USD",
  "maxItems": 5,
  "sortBy": "rank"
}
```

## Output

```json
{
  "id": {
    "label": "Id",
    "format": "text"
  },
  "url": {
    "label": "Url",
    "format": "link"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "symbol": {
    "label": "Symbol",
    "format": "text"
  },
  "rank": {
    "label": "Rank",
    "format": "number"
  },
  "quoteCurrency": {
    "label": "Quote Currency",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "marketCap": {
    "label": "Market Cap",
    "format": "number"
  },
  "volume24h": {
    "label": "Volume24h",
    "format": "number"
  },
  "percentChange15m": {
    "label": "Percent Change15m",
    "format": "number"
  },
  "percentChange30m": {
    "label": "Percent Change30m",
    "format": "number"
  },
  "percentChange1h": {
    "label": "Percent Change1h",
    "format": "number"
  },
  "percentChange6h": {
    "label": "Percent Change6h",
    "format": "number"
  },
  "percentChange12h": {
    "label": "Percent Change12h",
    "format": "number"
  }
}
```

## About this Actor

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