JSFiddle - React, Tailwind, and code Playground
JavaScript
$.ajax({
url: "https://api.instagram.com/v1/users/search?q=cocacola&client_id=5c314c67157f4585ba3041281540c59b",
// Tell jQuery we're expecting JSONP
dataType: "jsonp",
success: function( response ) {
console.log( response ); // server response
}
});