Skip to content

Instantly share code, notes, and snippets.

@whitemx
Created December 9, 2014 15:11
Show Gist options
  • Save whitemx/08f8eac9ea235d3b0b75 to your computer and use it in GitHub Desktop.
Save whitemx/08f8eac9ea235d3b0b75 to your computer and use it in GitHub Desktop.
LDC Via get list of databases
var root = 'https://demo.ldcvia.com';
var apikey = '<ENTER YOUR API KEY HERE>';
$.ajax({
dataType: 'json',
type: 'GET',
url: root + '/1.0/databases',
data: data,
headers: {
'apikey': apikey
},
success: function(res) {
console.log(res);
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment