// GET $.get('/api/users', function(data) { console.log(data); }); // POST $.post('/api/users', { name: 'Alice' }, function(res) { console.log(res); }); // JSON shorthand $.getJSON('/api/data', function(json) { console.log(json); });