Problem scenario
You want to use Nomics to retrieve cryptocurrency prices. What do you do?
Prerequisite
Get an API key. It is free here: https://p.nomics.com/pricing#free-plan
(You do not need to provided credit card information to obtain one.)
Procedures
Run this Python program but replace YOUR_KEY_HERE with the key:
import requests
resp = requests.get(“https://api.nomics.com/v1/prices?key=YOUR_KEY_HERE&format=json”)
for item in resp.json():
if item[’currency’] in [”BTC”, …
Continue reading “How Do You Use Nomics to a Retrieve Cryptocurrency Prices?”