from channel3_sdk import Channel3client = Channel3()websites = client.websites.list().websitesbest_buy = next(site for site in websites if site.domain == "bestbuy.com")results = client.products.search( query="coffee maker", filters={"website_ids": [best_buy.id]},)print(results.products[0].offers)
Website filters restrict the retailers whose offers can match. They are different from brands; see Website.