JSFiddle - React, Tailwind, and code Playground
HTML
<p></p>
JavaScript
$.getJSON("http://clipped.me/algorithm/clippedapi.php?url=http://www.bbc.com/news/world-asia-china-30067035&callback=?", function(data) {
var story = data.summary[0];
console.log(story);
$('p').html(story)
});