import Channel3 from '@channel3/sdk';
const client = new Channel3({
apiKey: process.env['CHANNEL3_API_KEY'], // This is the default and can be omitted
});
// Automatically fetches more pages as needed.
for await (const subscription of client.priceTracking.listSubscriptions()) {
console.log(subscription.canonical_product_id);
}