// JQuery Example - replace YOURTOKEN with the token from https://labcom.cloud/settings $.ajax({ url: "https://labcom.cloud/graphql", method: 'post', headers: { Authorization: "YOURTOKEN" }, dataType: 'json', data: { query: "{ CloudAccount { email last_change_time Accounts { forename surname Measurements { value parameter unit timestamp } } } }" }, success: function(result){ console.log(result); } });