# CoinPaprika Crypto Scraper - Price, Market Cap & Rank (`ninhothedev/coinpaprika-scraper`) Actor

$0.5/1K 🔥 Fast CoinPaprika scraper! Crypto prices, market cap, volume, rank & 7d change for 1000s of coins. No key. JSON, CSV, Excel or API in seconds. Pull thousands of data points for research & trading ⚡

- **URL**: https://apify.com/ninhothedev/coinpaprika-scraper.md
- **Developed by:** [ninhothedev](https://apify.com/ninhothedev) (community)
- **Categories:** Developer tools, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.50 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## CoinPaprika Crypto Scraper 🪙

Scrape **live cryptocurrency market data** from [CoinPaprika](https://coinpaprika.com) — price, market cap, 24h volume, rank, and 24h/7d percentage change — as clean, structured JSON. **No API key, no login, no browser.** The Actor talks directly to CoinPaprika's fast public JSON API, so it is datacenter-proxy friendly and cheap to run.

👉 **[Run it on Apify »](https://apify.com/ninhothedev/coinpaprika-scraper)**

***

### What it does

- **Whole-market snapshot** — pull the entire ranked market (Bitcoin, Ethereum, and thousands more) in one run.
- **Targeted lookups** — fetch only the coins you care about by id (e.g. `btc-bitcoin`, `eth-ethereum`).
- **Clean, flat output** — one row per coin, ready for spreadsheets, dashboards, or databases.
- **Reliable** — Chrome-impersonating HTTP client with a pure-Python fallback; every field is nullable so partial data never breaks a run.

### Modes

| Mode | Description |
| --- | --- |
| `tickers` | Fetch the full ranked market, capped by `maxItems`. |
| `coins` | Fetch only the specific coin ids listed in `coinIds`. |

### Input

| Field | Type | Default | Description |
| --- | --- | --- | --- |
| `mode` | select | `tickers` | `tickers` (whole ranked market) or `coins` (specific ids). |
| `coinIds` | array | `["btc-bitcoin","eth-ethereum"]` | Coin ids for `coins` mode. |
| `maxItems` | integer | `200` (max `5000`) | Maximum coins to scrape. |

#### Example input

```json
{
  "mode": "tickers",
  "maxItems": 200
}
```

```json
{
  "mode": "coins",
  "coinIds": ["btc-bitcoin", "eth-ethereum", "sol-solana"]
}
```

### Output

Each dataset item:

```json
{
  "id": "btc-bitcoin",
  "name": "Bitcoin",
  "symbol": "BTC",
  "rank": 1,
  "price": 63915.2,
  "volume_24h": 22128708456.76,
  "market_cap": 1281999101118,
  "change_24h": 1.69,
  "change_7d": -0.4,
  "circulating_supply": 20057812,
  "max_supply": 21000000,
  "url": "https://coinpaprika.com/coin/btc-bitcoin/",
  "scraped_at": "2026-07-18T05:43:18+00:00"
}
```

### Pricing

This Actor is lightweight and runs on **512 MB**. Expect roughly **~$1 per 1,000 coins** scraped (pay-per-result equivalent) — a full 200-coin market snapshot costs pennies and finishes in seconds.

### Use cases

- **Crypto research** — snapshot the market for analysis and screening.
- **Dashboards** — feed a BI dashboard or Google Sheet with fresh prices and market caps.
- **Trading** — build signals from 24h/7d momentum and volume.
- **Portfolio tracking** — value a portfolio by pulling only the coins you hold.

### Comparison

| | CoinPaprika Scraper | Manual API scripting | Copy-paste from a website |
| --- | --- | --- | --- |
| Setup | None — just click Run | Write & host code | Tedious, error-prone |
| Scheduling | Built-in (Apify) | DIY cron | Not possible |
| Structured export | JSON / CSV / Excel | DIY | No |
| Maintenance | Managed | You own it | N/A |

### Related Actors

- [CoinGecko Crypto Scraper](https://apify.com/ninhothedev/coingecko-crypto-scraper)
- [Binance Crypto Scraper](https://apify.com/ninhothedev/binance-crypto-scraper)
- [DefiLlama Scraper](https://apify.com/ninhothedev/defillama-scraper)
- [Fear & Greed Index Scraper](https://apify.com/ninhothedev/fear-greed-index-scraper)

### FAQ

**Do I need a CoinPaprika API key?** No. The Actor uses the free public endpoints.

**How fresh is the data?** CoinPaprika updates continuously; each run reflects the latest published tickers.

**Which currencies?** Values are reported in USD.

***

**Keywords:** coinpaprika scraper, crypto price scraper, cryptocurrency market data, bitcoin price api, ethereum price, market cap scraper, crypto volume, coin rank, altcoin data, crypto dashboard, trading data, portfolio tracker, coinpaprika api, crypto json.

# Actor input Schema

## `mode` (type: `string`):

What to scrape. 'tickers' returns the full ranked market (up to maxItems). 'coins' returns only the specific coin ids listed in coinIds.

## `coinIds` (type: `array`):

CoinPaprika coin ids to fetch when mode is 'coins', e.g. 'btc-bitcoin', 'eth-ethereum'. Ignored in 'tickers' mode.

## `maxItems` (type: `integer`):

Maximum number of coins to scrape. In 'tickers' mode this caps the ranked list; in 'coins' mode it caps how many ids are processed.

## Actor input object example

```json
{
  "mode": "tickers",
  "coinIds": [
    "btc-bitcoin",
    "eth-ethereum"
  ],
  "maxItems": 200
}
```

# Actor output Schema

## `results` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "coinIds": [
        "btc-bitcoin",
        "eth-ethereum"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("ninhothedev/coinpaprika-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "coinIds": [
        "btc-bitcoin",
        "eth-ethereum",
    ] }

# Run the Actor and wait for it to finish
run = client.actor("ninhothedev/coinpaprika-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "coinIds": [
    "btc-bitcoin",
    "eth-ethereum"
  ]
}' |
apify call ninhothedev/coinpaprika-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,ninhothedev/coinpaprika-scraper"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/eLN4OpqlghdUYbDs6/builds/9YCohAef951sYou6v/openapi.json
