π
β€οΈ
Highlights
Pinned Loading
-
Top-5-Cryptocurrency-APIs-for-Developers
Top-5-Cryptocurrency-APIs-for-Developers Publicβ€οΈ π€ Data Science Guide to Bitcoin βΏ , Ethereum Ξ & Crypto Data APIs | LunarCRUSH - Social Listening For Crypto, Messari, Nomics, CoinMarketCap, CoinGecko π
-
LunarCRUSHRequestInfluencers.py
LunarCRUSHRequestInfluencers.py 1import urllib.request
2url = "https://api.lunarcrush.com/v2?data=influencers&key={API_KEY_HERE}&symbol=BTC"
3print(urllib.request.urlopen(url).read())
-
NomicsRequest.py
NomicsRequest.py 1import urllib.request
2url = "https://api.nomics.com/v1/currencies/ticker?key=demo-26240835858194712a4f8cc0dc635c7a&ids=BTC,ETH,XRP&interval=1d,30d&convert=EUR"
3print(urllib.request.urlopen(url).read())
-
MessariRequest.py
MessariRequest.py 1from six.moves import urllib
2url = "https://data.messari.io/api/v1/assets/btc/metrics"
3print(urllib.request.urlopen(url).read())
-
CoinMarketCapRequest.py
CoinMarketCapRequest.py 123#This example uses Python 2.7 and the python-request library.
45from requests import Request, Session
-
NomicsRequest.py
NomicsRequest.py 1import urllib.request
2url = "https://api.nomics.com/v1/currencies/ticker?key=demo-26240835858194712a4f8cc0dc635c7a&ids=BTC,ETH,XRP&interval=1d,30d&convert=EUR"
3print(urllib.request.urlopen(url).read())
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.