← Back to Skills Marketplace
browseract-ai

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

by browser-act · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
350
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install amazon-best-selling-products-finder-api-skill
Description
This skill helps users extract structured best-selling product data from Amazon via the BrowserAct API. Agent should proactively apply this skill when users...
README (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
Usage Guidance
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.
Capability Analysis
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.
Capability Assessment
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.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install amazon-best-selling-products-finder-api-skill
  3. After installation, invoke the skill by name or use /amazon-best-selling-products-finder-api-skill
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
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.
Metadata
Slug amazon-best-selling-products-finder-api-skill
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is 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... It is an AI Agent Skill for Claude Code / OpenClaw, with 350 downloads so far.

How do I install amazon-best-selling-products-finder-api-skill?

Run "/install amazon-best-selling-products-finder-api-skill" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is amazon-best-selling-products-finder-api-skill free?

Yes, amazon-best-selling-products-finder-api-skill is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does amazon-best-selling-products-finder-api-skill support?

amazon-best-selling-products-finder-api-skill is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created amazon-best-selling-products-finder-api-skill?

It is built and maintained by browser-act (@browseract-ai); the current version is v1.0.0.

💬 Comments