All the examples I find online are of earlier versions of the Imgur API or non JS code all of which uses an API key which doesn\'t exist in the newer API. Instead you get a
$.ajax({ url: 'https://api.imgur.com/3/image', headers: { 'Authorization': 'Client-ID YOUR_CLIENT_ID' }, type: 'POST', data: { 'image': 'helloworld.jpg' }, success: function() { console.log('cool'); } });