Search API Connector Documentation
Free Crypto APIs for Google Sheets
There are a huge number of crypto APIs, and virtually all of them offer public crypto data for free through their public endpoints.
This article lists the top crypto APIs accessed by users of the API Connector extension for Sheets, along with the type of authentication they require. For Open APIs (those with no authorization requirements) a sample URL is provided so you can click the URL and see the results in your browser.
This list refers to publicly available data. Private data, e.g. your own transaction history, always requires authentication.
List of Crypto Market Data APIs
# | API NAME | DESCRIPTION | AUTH REQUIREMENTS | SAMPLE URL |
---|---|---|---|---|
1 | Binance | 24 hr crypto data | Open | https://data.binance.com/api/v3/ticker/24hr |
2 | CoinAPI | Excellent and well-organized source of crypto market data | API Key | |
3 | CoinBase | Small but simple dataset focused on currencies, prices, and exchange rates. | Open | https://api.coinbase.com/v2/exchange-rates?currency=BTC |
4 | CoinCap | Real time cryptocurrency prices | Open | https://api.coincap.io/v2/assets |
5 | CoinDesk | Bitcoin price index | Open | https://api.coindesk.com/v1/bpi/currentprice.json |
6 | CoinGecko | Cryptocurrency market data | Open | https://api.coingecko.com/api/v3/coins/markets?vs_currency=usd |
7 | CoinLore | Cryptocurrency market data | Open | https://api.coinlore.net/api/tickers/ |
8 | CoinMap | Crypto ATMs | Open | https://coinmap.org/api/v1/venues/ |
9 | CoinMarketCap | Comprehensive crypto API providing price/market data, exchange data, and token metadata | API Key | |
10 | CoinPaprika | Frequently updated market data: coin prices, volumes, market caps, ATHs, return rates and more | Open | https://api.coinpaprika.com/v1/tickers |
11 | CoinStats | Cryptocurrency market data | Open | https://api.coinstats.app/public/v1/markets?coinId=bitcoin |
12 | CryptingUp | Small but reliable crypto data API offering free access to cryptocurrency information, markets and exchanges | Open | https://www.cryptingup.com/api/markets |
13 | CryptoCompare | Very good API with interesting data points like trading signals and social data alongside standard market data | API Key | |
14 | DEX Screener | Blockchain screener | Open | https://api.dexscreener.com/latest/dex/search?q=WBNB%20USDC |
15 | Exchangerate | Currency exchange & crypto rates | Open | https://api.exchangerate.host/latest |
16 | Gemini | Cryptocurrency market data | Open | https://api.gemini.com/v2/ticker/btcusd |
17 | Kraken | OHLC data, order books, recent trades | Open | https://api.kraken.com/0/public/Trades?pair=ltcusd |
18 | KuCoin | Ticker, order book, historical data | Open | https://api.kucoin.com/api/v1/market/stats?symbol=BTC-USDT |
19 | Nexchange | Cryptocurrency market data | Open | https://api.n.exchange/en/api/v1/price/btcusd/history/?hours=0.1&data_points=3&market_code=nex |
20 | OpenSea | NFTs | Open | https://api.opensea.io/api/v1/assets?format=json |
21 | WazirX | India-focused crypto API with tickers, order books, and trade lookups | Open | https://api.wazirx.com/sapi/v1/tickers/24hr |
Block.cc is a professional cryptocurrency information service platform that provides cryptocurrency quotes, data, and information.
Available data for the currency market is the latest price, best bid / ask price,24h high/low, volume 24h, price change, currency price, order book, exchange announcement, News, articles, transaction count, address count, the exchange rate of more than 100 fiat currencies.
Auth type is API key
You may wish to add that Binance is no longer supported?
Binance is still supported if you use a different base domain, e.g.
https://data.binance.com/api/v3/ticker/24hr
Hi !, Where can I looking for the meaning of each item ['symbol', 'priceChange', 'priceChangePercent', 'weightedAvgPrice', 'prevClosePrice', 'lastPrice', 'lastQty', 'bidPrice', 'bidQty', 'askPrice', 'askQty', 'openPrice', 'highPrice', 'lowPrice', 'volume', 'quoteVolume', 'openTime', 'closeTime', 'firstId', 'lastId', 'count']
Thanks
That sounds like the list of metrics sent back by Binance's ticker endpoint, is that right? If so, I don't think they really define them in their documentation but they're pretty standard metrics so you can Google them for more info. Or, here's a quick list of definitions if it helps:
symbol
: the trading pair, e.g. "BTCUSDT"priceChange
: 24-hour price changepriceChangePercent
: 24-hour price change percentageweightedAvgPrice
: weighted average pricelastPrice
: last transaction pricelastQty
: The last transaction amountopenPrice
: The price of the first transaction within 24 hourshighPrice
:24-hour highest pricelowPrice
: 24-hour lowest pricevolume
: 24-hour trading volumequoteVolume
: 24-hour turnoveropenTime
: The time when the first transaction occurred within 24 hourscloseTime
:The time when the last transaction occurred within 24 hoursfirstId
:first transaction idlastId
:last transaction idcount
:number of transactionsis there some free apis for RSI, MACD, Moving Averages or Logarhythmic Regressions?
Sorry, I'm not really familiar with those but here's a discussion that mentions a few options: https://www.reddit.com/r/algotrading/comments/q44ryc/apis_to_pull_data_for_rsi_macd_and_implied/.
Hi, is there a way to switch out the request from the one with coingecko, so I can get an array of values? Tried the coinbase one but its only 1 coin at a time
Coinbase is one of the simplest APIs, pretty much any other crypto API will let you fetch data for more than one coin at a time. I like CoinMarketCap, or CoinPaprika is great too if you don’t want to get a key.