CoinPaprika Coin & Ticker Data Scraper avatar

CoinPaprika Coin & Ticker Data Scraper

Pricing

$0.05 / 1,000 actor runs

Go to Apify Store
CoinPaprika Coin & Ticker Data Scraper

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

Ahmed

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

5 days ago

Last modified

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 /tickers market 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

FieldTypeDescription
coin_idstringCoinPaprika coin id, e.g. btc-bitcoin
namestringCoin name
symbolstringTicker symbol
rankintegerMarket cap rank
typestringcoin or token
is_activebooleanWhether the coin is actively tracked
price_usdnumberCurrent price in USD
market_cap_usdnumberMarket capitalization in USD
volume_24h_usdnumber24h trading volume in USD
percent_change_1hnumberPrice change percent over 1 hour
percent_change_24hnumberPrice change percent over 24 hours
percent_change_7dnumberPrice change percent over 7 days
percent_change_30dnumberPrice change percent over 30 days
percent_change_1ynumberPrice change percent over 1 year
ath_price_usdnumberAll-time high price in USD
ath_datestringDate of all-time high price
circulating_supplynumberCirculating supply of the coin
total_supplynumberTotal supply of the coin
max_supplynumberMaximum possible supply of the coin
descriptionstringShort project description, if available
websitestringPrimary project website URL
twitter_followersintegerTwitter follower count, if available
github_starsintegerGitHub star count, if available
last_updatedstringTimestamp 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.