JSFiddle - React, Tailwind, and code Playground
CSS
/common/topic/image
JavaScript
$.getJSON("https://www.googleapis.com/freebase/v1/search?query=us%20president&filter=(all%20type:/people/person)&output=(/common/topic/image)", function (data) {
var r = data.result;
$.each(r, function (i, j) {
var arr = j.output['/common/topic/image'];
$.each(arr['/common/topic/image'], function (k, l) {
//console.log(l);
});
});
});