I still haven’t got where I can find the list of symbols: I can get everything about a coin/symbol but in the query I have to give the list of the symbols /IDs.
Can you please give me a hint about how to get list of the coins?
You can get a list of all currencies with their Nomics IDs (unique for use on the API) and display symbols (not unique, for display to users only) here:
To get the data about an asset, we need to know the Nomics ID, right? How do I get a list of all available / valid Nomics IDs? Is there any endpoint to get this data?
This returns almost 37,000 currencies. There seems to be several versions of the same currencies and not everything seems to be a cryptocurrency, like for example the one with the code “0241CX” that is called “Alibaba Health Information Technology Limited”. Is that a company stock instead?
How do I do if I only want a list of cryptocurrencies exclusively (without duplicates)?
However, this will not work since it’s a JSON format and they offer no format function on this endpoint. You will only receive 100 results per page or you can customize your results.
In order to read JSON you have to go to github and get a free script to import the JSON data as csv (I used this: import_json_appsscript.js · GitHub)
Then you load this function into your Google App Script (Extension > App Script). Save it, and run.
Now you are able to call a new function in your cells: =importJSON()