> ## Documentation Index
> Fetch the complete documentation index at: https://docs.superagentx.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Best Buy Handler

Best Buy is a leading consumer electronics retailer that provides a wide variety of products including laptops, TVs, phones, appliances, and more.
The **BestbuyHandler** allows programmatic access to Best Buy’s product catalog through its public API. Developers can search products, retrieve prices, discounts, reviews, and detailed product information.

This integration is useful for building product recommendation systems, price tracking tools, or e-commerce integrations.

## Example

To create the `BestbuyHandler` object with the API key:

```python theme={null}
import os
from superagentx_handlers.retail.bestbuy import BestbuyHandler

bestbuy_handler = BestbuyHandler(
    api_key=os.getenv("BESTBUY_API_KEY")
)
```

**Search Products (get\_best\_buy\_info):** <br />
Fetch product details from Best Buy based on a search keyword.

```python theme={null}
products = await bestbuy_handler.get_best_buy_info(search_text="laptop")
print(products)
```
