Example
To create theBestbuyHandler object with the API key:
Fetch product details from Best Buy based on a search keyword.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
BestbuyHandler object with the API key:
import os
from superagentx_handlers.retail.bestbuy import BestbuyHandler
bestbuy_handler = BestbuyHandler(
api_key=os.getenv("BESTBUY_API_KEY")
)
products = await bestbuy_handler.get_best_buy_info(search_text="laptop")
print(products)
