Cryptocurrency — entry 025 of 53
Coinpaprika
Coinpaprika provides free, keyless access to live and historical price, market cap, and ranking data for tens of thousands of coins and tokens, positioning itself as a fully open alternative to CoinMarketCap and CoinGecko. Paid Pro plans raise the rate limit and add extra historical depth, but the core dataset stays queryable with no API key at all.
CoinPaprika offers free, keyless market data for thousands of cryptocurrencies — prices, volumes, market caps, and historical quotes — indexed by its own coin_id scheme like btc-bitcoin.
GreatAPIs Score
Auth quickstart
- No API key required — requests are public and keyless
- Coin IDs follow the
{symbol}-{name}pattern (e.g.btc-bitcoin,eth-ethereum); look yours up via/coinsif unsure
Your key is stored only in this browser (localStorage) and sent directly to the API — never to greatapis.
Latest ticker data for Bitcoin
GEThttps://api.coinpaprika.com/v1/tickers/btc-bitcoin
{
"id": "btc-bitcoin",
"name": "Bitcoin",
"symbol": "BTC",
"rank": 1,
"last_updated": "2026-07-10T00:25:14Z",
"quotes": {
"USD": {
"price": 63055.93,
"volume_24h": 23564744728.3,
"market_cap": 1264539484463,
"percent_change_24h": 1.05
}
}
}Developer reference
10 requests/second per IP (global limit; higher limits on paid plans) -- per docs.coinpaprika.com/faq.
Gotchas & limits
- The free tier is rate-limited (roughly 20,000 calls/month) — heavier usage requires a paid plan via the Starter/Pro tiers
- IDs aren't the ticker symbol alone — use the full
symbol-nameslug returned by/coins, not justBTC - All quote data is nested under
quotes.<CURRENCY>(e.g.quotes.USD.price), not top-level fields