JSFiddle - React, Tailwind, and code Playground
by pradeep
HTML
<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<ul>
</ul>
JavaScript
$(document).ready(function() {
$.getJSON("https://newsapi.org/v2/top-headlines?country=us&category=business&apiKey=e94e647760054a4fb15178c0f80dbf11", function(data){
$.each(data.articles, function(){
$("ul").append("<li>Id: "+this.source['id']+"</li><li>name:"+this.source['name']+"</li><li>author:"+this['author']+"</li><li>title:"+this['title']+"</li><br />");
});
});
});