JSFiddle - React, Tailwind, and code Playground
JavaScript
var objects;
$.ajax({
type: "GET",
url: 'http://localhost:8080/highcharts-cloud-api-web/highcharts/object/dump.json',
dataType: "json",
success: function (data) {
objects = JSON.parse(data);
console.log('objects ', objects);
}
});