Ajax调用api时间

Hi I'm tring to use an api to get time and data but in log appear always error 403 forbidden. Api:https://www.mashape.com/parsify/format#!endpoint-Phone-Number. Is there an ajax call error?

$.ajax({
type: 'GET',

headers: {"X-Mashape-Authorization": "SEK2****7Egqx******hshVCG"},


async:false,
//dataType: "jsonp",
url: 'https://parsify-format.p.mashape.com/api/format/time?value=1362446014869&lang=it',
success: function(data) {
    console.log(data);
 time_now=data;
},
error: function(data) {
  console.log("ko" );
}

}); 

A 403 is most likely caused by either the site not getting correct authorization, or cross domain ajax.

If you're testing locally, cross domain ajax is blocked in some browsers, most notably chrome.