CoinMarketCap API

Crypto data from Binance — high accuracy and prices from hundreds of exchanges.

FinanceFreemiumfreemiumדורש מפתחקריפטו
Official siteDocumentation

About this API

CoinMarketCap (owned by Binance) is CoinGecko's direct rival. Pros: broader exchange coverage, more accurate short-term prices. Cons: requires an API key (Basic tier is free with 333 calls/day).

Who it's for

Trading bots needing accuracy
Low-volume projects
Settlement systems

How to use it

  1. 1
    Register at pro.coinmarketcap.com for a key.
  2. 2
    Send header X-CMC_PRO_API_KEY.
  3. 3
    Call /v1/cryptocurrency/quotes/latest.

Installation & setup

None. Plain HTTP. Store the key in env.

Code examples

curl -H "X-CMC_PRO_API_KEY: YOUR_KEY" \
  "https://pro-api.coinmarketcap.com/v1/cryptocurrency/quotes/latest?symbol=BTC,ETH&convert=ILS"

Sample response

{
  "data": {
    "BTC": {
      "quote": {
        "ILS": {
          "price": 236207,
          "percent_change_24h": 1.3
        }
      }
    },
    "ETH": {
      "quote": {
        "ILS": {
          "price": 11211,
          "percent_change_24h": -0.4
        }
      }
    }
  }
}

FAQ

333 calls/day.

Tips & pitfalls

Store history yourself — the basic plan returns no history.
Use convert=ILS — no manual conversion.

Guides

Related APIs