Cryptocurrency — entry 025 of 53

Coinpaprika

Verified Jul 2026

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`.

cryptocurrencymarket-datafreerankings
AuthenticationNone requiredCall it straight away — no key, no signup.
HTTPSSupportedTraffic is encrypted in transit.
CORSEnabledCallable directly from browser JavaScript.
PricingFreemiumA usable free tier exists, with paid plans for more volume.
FormatsJSONResponses can be requested as JSON.

GreatAPIs Score

Score85out of 100
Authentication25/25No authentication required
Pricing17/20Freemium tier available
Docs14/20Documentation URL provided
Formats9/15Single response format
Freshness20/20Verified within 6 months

Embed this badge

Scored 85 on greatapis.com
<a href="https://greatapis.com/api/coinpaprika/"><img src="https://greatapis.com/badge/coinpaprika.svg" alt="Scored 85 on greatapis.com"></a>

Auth quickstart

  1. No API key required — requests are public and keyless
  2. Coin IDs follow the `{symbol}-{name}` pattern (e.g. `btc-bitcoin`, `eth-ethereum`); look yours up via `/coins` if unsure
Stored keyNo key stored

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

200 application/json

{
  "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

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-name` slug returned by `/coins`, not just `BTC`
  • All quote data is nested under `quotes.<CURRENCY>` (e.g. `quotes.USD.price`), not top-level fields