Skip to content

Instantly share code, notes, and snippets.

@subnetmarco
Last active July 10, 2018 09:03
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save subnetmarco/5024297 to your computer and use it in GitHub Desktop.
Save subnetmarco/5024297 to your computer and use it in GitHub Desktop.
Sample code for executing an AJAX request using jQuery.
$.ajax({
url: 'MASHAPE-URL', // The URL to the API. You can get this by clicking on "Show CURL example" from an API profile
type: 'POST', // The HTTP Method
data: {}, // Additional parameters here
dataType: 'json',
success: function(data) { alert(JSON.stringify(data)); },
error: function(err) { alert(err); },
beforeSend: function(xhr) {
xhr.setRequestHeader("X-Mashape-Authorization", "YOUR-MASHAPE-KEY"); // Enter here your Mashape key
}
});
@chrisseldo
Copy link

Thanks for this! By the way, the second "t" in your "dataType" parameter is lowercase.

@preetparm
Copy link

i am trying to this example but browser gives cross domain blocked error:
here is code.any suggestion please

$.ajax({
url: 'https://montanaflynn-dictionary.p.mashape.com/define', // The URL to the API. You can get this by clicking on "Show CURL example" from an API profile
type: 'GET', // The HTTP Method
data: {
'word':'irony'
}, // Additional parameters here
datatype: 'json',
success: function(data) { alert(JSON.stringify(data)); },
error: function(err) { console.log(err); },
beforeSend: function(xhr) {
xhr.setRequestHeader("X-Mashape-Authorization", "K1DagFUxxxxxxxxxxxxx"); // Enter here your Mashape key
}
});

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment