This is the single onboarding path for BuyWhere developers: create a key, run a product search, then wire BuyWhere into your MCP-compatible agent stack.
Step 1
Create a key
Use the self-serve beta signup form. No card, no sales call.
Step 2
Run search
Call `GET /v1/search` with a bearer token and natural-language query.
Step 3
Connect MCP
Add BuyWhere to Claude, Cursor, or any compatible desktop client.
Step 1
Use the BuyWhere beta signup flow to provision a working key instantly. The success screen gives you a ready-to-run request, and the same key is emailed to you for safekeeping.
What you get
Step 2
BuyWhere's quickest activation path is a single authenticated request to GET /v1/search.
Request checklist
https://api.buywhere.aiAuthorization: Bearer YOUR_KEYqlimit, platform, price_min, price_maxcurl -sS "https://api.buywhere.ai/v1/search?q=wireless+headphones&limit=5" \
-H "Authorization: Bearer bw_live_your_key_here"{
"total": 5,
"limit": 5,
"offset": 0,
"has_more": true,
"items": [
{
"id": 12345,
"name": "Sony WH-1000XM5 Wireless Headphones",
"price": 429.0,
"currency": "SGD",
"source": "lazada_sg",
"buy_url": "https://...",
"affiliate_url": "https://api.buywhere.ai/v1/track/12345",
"is_available": true
}
]
}Step 3
BuyWhere ships an MCP server so agent builders can expose product search as tools inside Claude Desktop, Cursor, and other MCP-compatible environments.
Setup notes
mcp_server.py.BUYWHERE_API_KEY and BUYWHERE_API_URL.{
"mcpServers": {
"buywhere": {
"command": "python",
"args": ["/absolute/path/to/buywhere-api/mcp_server.py"],
"env": {
"BUYWHERE_API_KEY": "bw_live_your_key_here",
"BUYWHERE_API_URL": "https://api.buywhere.ai"
}
}
}
}Next steps
Share https://buywhere.ai/quickstart anywhere you send developers. It covers the activation path end-to-end and branches into deeper docs only after the first successful request.