const request = require('request');
const options = {
method: 'GET',
url: 'https://api.betterez.com/inventory/bundles',
qs: {providerId: 'replace-with-providerId', type: 'replace-with_typeId'},
headers: {Accept: 'application/json', 'x-api-key': '{{x-api-key}}'}
};
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});