I am currently trying to find a WORKING and CURRENT JSON files that would be able to pull JSON info from a link such as
https://api.coinmarketcap.com/v1/ticker/bitcoin/?convert=CAD
With that link when you click on that it will display CURRENT prices for bitcoin.
All the libraries I downloaded for JSON is either fragmented or very out of date by years.
Why hasn’t JSON been standard for JAVA projects? But I digress.
If you click on the above link it displays info on bitcoin. I am only interested in one field and that is "price_cad". Which JSON is most recommended that is current and up-to-date and can achieve the desired results.
I reviewed the Question Parsing JSON in JAVA usng Gson. I found that this was not exactly what I was looking for.
Can someone help me with this?