How can I read JSON file from the API using AJAX?

How can I read JSON file from the API using AJAX?

Hello, 

I want to parse/read the results from a jSON file coming from the API but I have not been able to make it work so far.

The code I'm using is as follows: 

  1. $.ajax({
  2.     type: 'GET',
  3.     url: 'https://recruit.zoho.com/recruit/private/json/JobOpenings/getRecords?newFormat=1&authtoken=MyAuthToken&scope=recruitapi&version=2',
  4.     async: false,
  5.     jsonpCallback: 'jsonCallback',
  6.     contentType: "application/json",
  7.     dataType: 'jsonp',
  8.     success: function(data)
  9.     {
  10.         $('#jsonp-results').html(JSON.stringify(data));
  11.         console.log(json);
  12.          alert('yo');
  13.     },
  14.     error: function(e)
  15.     {
  16.        alert('yo');

  17.     }
  18. });

However, this doesn't returns anything.
 
Can you please point me in the right direction?