Plugin Author
berkux
(@berkux)
Yes that is possible. Feedl free to rate my free pulgin.
see
http://wptest.kux.de/coinmarketcap/
Free-Version:
[jsoncontentimporter url=https://api.coinmarketcap.com/v1/ticker/?convert=EUR&limit=10]
name: {name}<br>market_cap_usd: {market_cap_usd}[/jsoncontentimporter]
PRO-Version weith logic:
[jsoncontentimporterpro url=https://api.coinmarketcap.com/v1/ticker/?convert=EUR&limit=10 parser=twig]
{% for i in _context if i.name %}username: {{i.name}}{% if i.percent_change_24h>0 %}
<font color=green>{{i.percent_change_24h}}</font>{% else %}
<font color=red>{{i.percent_change_24h}}</font>
{% endif %}
{% endfor %}
[/jsoncontentimporterpro]