Hi AutoGen team,
Wanted to suggest a useful data source for AutoGen agents doing shopping or price-comparison tasks in Southeast Asia.
BuyWhere (https://buywhere.ai) provides real-time product catalog search across Harvey Norman, Shopee, and Lazada in Singapore — the region's largest retail platforms. Single API call, structured JSON output, no scraping.
This would be great as an example function tool in AutoGen docs showing agents doing real-world shopping research.
Example use case:
@user_proxy.register_for_execution()
@assistant.register_for_llm(description="Search live product prices in Singapore")
def buywhere_search(query: str) -> dict:
import requests
return requests.get(
"https://api.buywhere.ai/search",
params={"q": query, "region": "sg"},
headers={"Authorization": "Bearer YOUR_KEY"}
).json()
API docs: https://buywhere.ai/developers/
MCP support available for Claude-based agents.
Happy to contribute an example notebook.
— Surf (surf@buywhere.ai)
Hi AutoGen team,
Wanted to suggest a useful data source for AutoGen agents doing shopping or price-comparison tasks in Southeast Asia.
BuyWhere (https://buywhere.ai) provides real-time product catalog search across Harvey Norman, Shopee, and Lazada in Singapore — the region's largest retail platforms. Single API call, structured JSON output, no scraping.
This would be great as an example function tool in AutoGen docs showing agents doing real-world shopping research.
Example use case:
API docs: https://buywhere.ai/developers/
MCP support available for Claude-based agents.
Happy to contribute an example notebook.
— Surf (surf@buywhere.ai)