CoinPaprika Coin & Ticker Data Scraper
Pricing
$0.05 / 1,000 actor runs
CoinPaprika Coin & Ticker Data Scraper
Exports CoinPaprika coin metadata and live ticker market data (price, market cap, volume, change %, supply, ATH, socials) as flat rows from the official API.
Pricing
$0.05 / 1,000 actor runs
Rating
0.0
(0)
Developer
Ahmed
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
5 days ago
Last modified
Categories
Share
Exports CoinPaprika coin metadata and live ticker market data — price, market cap, volume, change %, supply, ATH, and social stats — as flat rows pulled directly from the official CoinPaprika API. Built for traders, analysts, and developers who need clean per-coin data without writing their own API integration or handling pagination and rate limits by hand.
Why this scraper
- Reads the official CoinPaprika REST API directly, combining
/coins/{id}metadata and/tickersmarket data into a single flat row per coin, so you don't need two separate calls or a join step. - Covers more distinct fields than typical single-purpose scrapers in one record — GitHub stars, Twitter followers, ATH date, and per-period % change (1h/24h/7d/30d/1y) alongside standard price and supply data.
- Priced at $0.00005 per run, among the lowest on the store, regardless of how many coins or tickers are fetched in that run.
Output fields
| Field | Type | Description |
|---|---|---|
| coin_id | string | CoinPaprika coin id, e.g. btc-bitcoin |
| name | string | Coin name |
| symbol | string | Ticker symbol |
| rank | integer | Market cap rank |
| type | string | coin or token |
| is_active | boolean | Whether the coin is actively tracked |
| price_usd | number | Current price in USD |
| market_cap_usd | number | Market capitalization in USD |
| volume_24h_usd | number | 24h trading volume in USD |
| percent_change_1h | number | Price change percent over 1 hour |
| percent_change_24h | number | Price change percent over 24 hours |
| percent_change_7d | number | Price change percent over 7 days |
| percent_change_30d | number | Price change percent over 30 days |
| percent_change_1y | number | Price change percent over 1 year |
| ath_price_usd | number | All-time high price in USD |
| ath_date | string | Date of all-time high price |
| circulating_supply | number | Circulating supply of the coin |
| total_supply | number | Total supply of the coin |
| max_supply | number | Maximum possible supply of the coin |
| description | string | Short project description, if available |
| website | string | Primary project website URL |
| twitter_followers | integer | Twitter follower count, if available |
| github_stars | integer | GitHub star count, if available |
| last_updated | string | Timestamp of the underlying data |
Input
{"startUrls": [{ "url": "https://api.coinpaprika.com/v1/coins/btc-bitcoin" }],"maxItems": 50}
Output
{"coin_id": "btc-bitcoin","name": "Bitcoin","symbol": "BTC","rank": 1,"type": "coin","is_active": true,"price_usd": null,"market_cap_usd": null,"volume_24h_usd": null,"percent_change_1h": null,"percent_change_24h": null,"percent_change_7d": null,"percent_change_30d": null,"percent_change_1y": null,"ath_price_usd": null,"ath_date": "","circulating_supply": null,"total_supply": null,"max_supply": null,"description": "Bitcoin (BTC) is a decentralized digital currency that enables peer-to-peer transactions without intermediaries, using blockchain technology to ensure security and transparency. It was created in 2009 by an anonymous entity known as Satoshi Nakamoto. Source: CoinPaprika.com","website": "https://bitcoin.org/","twitter_followers": 161310,"github_stars": 78841,"last_updated": "2026-09-09T14:13:00Z"}
Pricing
Pay-per-event: $0.00005 per actor run, charged once regardless of how many coins or tickers are fetched. A typical run covering a handful of coins or up to 50 tickers costs $0.00005 total.
Use cases
- Feeding a crypto dashboard or spreadsheet with live price, market cap, and % change data for a fixed watchlist of coins.
- Backtesting or research scripts that need historical-style snapshots of ATH price/date alongside current supply figures.
- Screening projects by developer and community activity (GitHub stars, Twitter followers) combined with market data in one pass.