Welcome to the Squadcast developer hub. You'll find comprehensive guides and documentation to help you start working with Squad as quickly as possible, as well as support if you get stuck. Let's jump right in!
var request = require('request');
var options = {
'method': 'GET',
'url': 'https://api.squadcast.fm/v2/sessions',
'headers': {
'Authorization': 'Bearer YOUR_API_KEY'
}
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});