SDKs - csirtgadgets/csirtg GitHub Wiki
The current SDKs can be found here.
Download the extension here.
You can pull the most recent javascript lib from here.
You can also checkout the chrome extension for examples.
<script type="text/javascript" src="csirtgsdk.js"></script>
<script type="text/javascript" charset="utf-8">
var cli = new CSIRTGSDK({user: 'wes', token: "1234", q: "example.com"});
cli.search(function(err, success) {
if (err) {
throw err;
}
});
</script>