import Channel3 from "@channel3/sdk";
const client = new Channel3();
const results = await client.products.search({
query: "organic cotton t-shirt",
limit: 20,
});
for (const product of results.products) {
console.log(product.title, product.offers[0]?.price);
}