← 返回 Skills 市场
browseract-ai

amazon-best-selling-products-finder-api-skill

作者 browser-act · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
350
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install amazon-best-selling-products-finder-api-skill
功能描述
This skill helps users extract structured best-selling product data from Amazon via the BrowserAct API. Agent should proactively apply this skill when users...
使用说明 (SKILL.md)

\r \r

Amazon Best Selling Products Finder API Skill\r

\r

📖 Skill Introduction\r

This skill provides users with a one-stop product data extraction service using the BrowserAct Amazon Best Selling Products Finder API template. It can directly extract structured best-selling product data from Amazon. By inputting search keywords, data limit, and marketplace URL, you can easily get clean and usable product data including titles, prices, ratings, reviews, sales volume, and promotional details.\r \r

✨ Features\r

  1. No hallucinations, ensuring stable and precise data extraction: Preset workflows avoid AI generative hallucinations.\r
  2. No CAPTCHA issues: No need to handle reCAPTCHA or other verification challenges.\r
  3. No IP access restrictions and geofencing: No need to handle regional IP restrictions.\r
  4. More agile execution speed: Compared to pure AI-driven browser automation solutions, task execution is faster.\r
  5. Extremely high cost-effectiveness: Significantly reduces data acquisition costs compared to AI solutions that consume a large number of Tokens.\r \r

🔑 API Key Guide Flow\r

Before running, first check the BROWSERACT_API_KEY environment variable. If it is not set, do not take other actions; require and wait for the user to collaborate to provide it.\r The Agent must inform the user at this time:\r

"Since you have not configured the BrowserAct API Key yet, please go to the BrowserAct Console to get your Key."\r \r

🛠️ Input Parameters\r

When calling the script, the Agent should flexibly configure the following parameters based on user needs:\r \r

  1. KeyWords\r
    • Type: string\r
    • Description: Search keywords used to find Amazon products.\r
    • Example: iphone 17 pro max, gaming mouse, running shoes\r \r
  2. Date_limit\r
    • Type: number\r
    • Description: Maximum number of products to extract.\r
    • Default: 10\r
    • Recommendation: Set to a lower number for quick checks, or higher for comprehensive analysis.\r \r
  3. Marketplace_url\r
    • Type: string\r
    • Description: Amazon marketplace URL for region-specific searches.\r
    • Default: https://www.amazon.com\r
    • Example: https://www.amazon.co.uk, https://www.amazon.de\r \r

🚀 Call Method (Recommended)\r

The Agent should execute the following standalone script to achieve "one command to get results":\r \r

# Call example\r
python -u ./scripts/amazon_best_selling_products_finder_api.py "search keywords" limit "marketplace_url"\r
```\r
\r
### ⏳ Running Status Monitoring\r
Since this task involves automated browser operations, it may take a long time (several minutes). The script will **continuously output status logs with timestamps** (e.g. `[14:30:05] Task Status: running`) during execution.\r
**Agent notice**:\r
- While waiting for the script to return the result, please keep an eye on the terminal output.\r
- As long as the terminal is still outputting new status logs, it means the task is running normally. Please do not mistakenly judge it as a deadlock or unresponsive.\r
- If the status remains unchanged for a long time or the script stops outputting and no result is returned, the retry mechanism can be triggered.\r
\r
## 📊 Data Output Description\r
After successful execution, the script will parse and print the result directly from the API response. The result contains:\r
- `title`: Product title\r
- `brand`: Brand name\r
- `list_price`: Original list price\r
- `current_price`: Current selling price\r
- `star_rating`: Average star rating\r
- `review_count`: Total review count\r
- `past_month_sales`: Sales volume in the past month\r
- `availability`: Stock status\r
- `promotion`: Promotional offers\r
- `asin`: Amazon Standard Identification Number\r
- `category`: Product category\r
- `badge`: Badges like Amazon's Choice\r
- `product_url`: Direct link to the product\r
\r
## ⚠️ Error Handling & Retry Mechanism\r
During the execution of the script, if an error occurs (such as network fluctuation or task failure), the Agent should follow this logic:\r
\r
1. **Check the output content**:\r
   - If the output **contains** `"Invalid authorization"`, it means the API Key is invalid or expired. At this time, **do not retry**, and guide the user to recheck and provide the correct API Key.\r
   - If the output **does not contain** `"Invalid authorization"` but the task execution fails (for example, the output starts with `Error:` or the returned result is empty), the Agent should **automatically try to execute the script again once**.\r
\r
2. **Retry limit**:\r
   - Automatic retry is limited to **once**. If the second attempt still fails, stop retrying and report the specific error message to the user.\r
\r
## 🌟 Typical Use Cases\r
1. **Market Research**: Extract product listings and ratings to analyze the current market for specific keywords.\r
2. **Competitor Analysis**: Monitor competitor pricing, discounts, and sales volume over time.\r
3. **Trending Products Discovery**: Find the best-selling and highly rated products within a specific category.\r
4. **Price Monitoring**: Track current prices and list prices to optimize purchasing strategies.\r
5. **Cross-Region Analysis**: Compare product availability and pricing across different Amazon marketplaces.\r
安全使用建议
This skill appears to do what it says (call BrowserAct to extract Amazon product data), but consider the following before installing: - Provenance: the package has no homepage and an unknown source. Prefer skills from known authors or with verifiable project pages. - API key exposure: the BROWSERACT_API_KEY you provide will be sent to api.browseract.com. Only provide that key if you trust BrowserAct and understand their privacy/usage policies. - Dependencies: the script requires the Python 'requests' library though it's not declared in the metadata or SKILL.md. Ensure your agent environment has requests installed (pip install requests) or the script will fail. - Cost/Rate limits: BrowserAct workflows may incur usage costs or rate limits—verify pricing and quotas on BrowserAct before running large extractions. - Inspect network behavior: if you have operational concerns, run the script in an isolated environment and monitor outbound traffic to confirm it only communicates with BrowserAct endpoints. If you want to proceed safely: ask the skill author for a homepage or source repository, confirm expected dependencies, and only provide the API key once you are comfortable with BrowserAct's terms.
功能分析
Type: OpenClaw Skill Name: amazon-best-selling-products-finder-api-skill Version: 1.0.0 The skill is a legitimate tool designed to extract Amazon product data using the BrowserAct API. The Python script (amazon_best_selling_products_finder_api.py) uses the standard requests library to interact with a specific API endpoint (api.browseract.com) and does not exhibit any signs of data exfiltration, unauthorized execution, or malicious prompt injection.
能力评估
Purpose & Capability
Name, description, SKILL.md, and the included script all consistently implement a BrowserAct-based Amazon best-sellers extractor. Required env var (BROWSERACT_API_KEY) and required binary (python) are appropriate for the claimed function.
Instruction Scope
SKILL.md instructs the agent to check for BROWSERACT_API_KEY, request it from the user if missing, and run the provided Python script with keywords, limit, and marketplace URL. The script only accesses the BrowserAct API and prints results; it does not attempt to read unrelated files or environment variables.
Install Mechanism
This is an instruction-only skill with a bundled script (no install spec). The script uses the third-party 'requests' library but the metadata/SKILL.md do not declare installing that dependency or a pip install step. That mismatch may cause runtime failures and is a minor incoherence.
Credentials
Only BROWSERACT_API_KEY is required. That is proportional to a service that authenticates to BrowserAct. The script will send the API key and user-supplied search parameters to api.browseract.com, which is expected for this functionality.
Persistence & Privilege
always is false, the skill is user-invocable only, and it does not modify other skills or system-wide configuration. It runs as a one-off script and does not request persistent privileges.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install amazon-best-selling-products-finder-api-skill
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /amazon-best-selling-products-finder-api-skill 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
- Initial release of the Amazon Best Selling Products Finder API skill. - Enables extraction of structured best-selling product data (titles, prices, ratings, sales, etc.) from Amazon via the BrowserAct API. - Supports keyword-based searches, region-specific marketplace URLs, and adjustable product result limits. - Guides users to configure the required BROWSERACT_API_KEY environment variable. - Provides error handling, automatic retry on failure, and clear user instructions for smooth operation. - Outputs comprehensive product details suitable for market research, competitor tracking, and trend discovery.
元数据
Slug amazon-best-selling-products-finder-api-skill
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

amazon-best-selling-products-finder-api-skill 是什么?

This skill helps users extract structured best-selling product data from Amazon via the BrowserAct API. Agent should proactively apply this skill when users... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 350 次。

如何安装 amazon-best-selling-products-finder-api-skill?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install amazon-best-selling-products-finder-api-skill」即可一键安装,无需额外配置。

amazon-best-selling-products-finder-api-skill 是免费的吗?

是的,amazon-best-selling-products-finder-api-skill 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

amazon-best-selling-products-finder-api-skill 支持哪些平台?

amazon-best-selling-products-finder-api-skill 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 amazon-best-selling-products-finder-api-skill?

由 browser-act(@browseract-ai)开发并维护,当前版本 v1.0.0。

💬 留言讨论