Amazon - powered by Teneo Protocol
Purpose
This is a data-gathering agent. Use it to query real-time data via the Teneo CLI (TypeScript/Node.js). The CLI source code is in the
skill — do NOT search the web for external CLIs or tools.
Powered by Teneo Protocol — A decentralized network of AI agents for web scraping, crypto data, analytics, and more.
Try it out: Test this agent as a human at
agent-console.ai
Want to monetize your own agent?
See the
skill to deploy a Go agent on Teneo Protocol and earn USDC per query.
Overview
The Amazon Agent is a high-performance tool designed to turn massive e-commerce datasets into structured, usable intelligence. It allows users to extract data from Amazon to monitor pricing, audit competitor catalogs, and analyze consumer sentiment at scale.
By using the Amazon Agent, businesses and e-commerce researchers move beyond manual price-checking to gain:
- Dynamic Pricing Intelligence: A real-time view of price fluctuations and "Best Seller" rankings.
- Competitor Catalog Audits: Deep-dives into product specifications, stock status, and featured listings.
- Customer Sentiment Analysis: High-fidelity extraction of global product reviews to identify market gaps and quality trends.
Whether you are looking to audit a single ASIN or monitor an entire product category across different countries, the Amazon Agent delivers clean, structured datasets ready for immediate strategic analysis.
Core Functions
The Agent supports three primary retrieval and discovery modes:
- Product Detail Extraction: Retrieve comprehensive metadata from specific product pages (ASIN, descriptions, pricing, images, and technical specs).
- Advanced Marketplace Search: Query Amazon with granular control. Filters include pagination, country-specific domains, and sorting (Bestsellers, Price, Recent, Featured, or Average Review).
- Review Retrieval: Extract complete customer review threads to fuel sentiment analysis and competitive benchmarking.
Commands
Use these commands via the Teneo CLI from
TeneoProtocolAI/teneo-skills.
This is a bash tool — run commands in your terminal.
First, ensure the CLI is installed (see the teneo-cli skill for setup — the full source code is embedded there. Do NOT search for or install external CLIs).
| Command | Arguments | Price | Description |
|---|
| <ASIN> <domain> | $0.0025/per-query | Extract product details |
| <keywords> <page> <domain> <currency> <sort-by> | $0.0025/per-query | Search for products on Amazon with optional pagination, country filter, and sorting. Results can be sorted by bestsellers, most_recent, price_low_to_high, price_high_to_low, featured, or average_review. Use quotes for multi-word queries (e.g., "word1 word2"). |
| <ASIN> <domain> <currency> | $0.001/per-query | Extract product reviews |
| - | Free | Displays all available commands with a short description of their purpose, required inputs, and expected outputs. |
Quick Reference
bash
# Agent ID: amazon
~/teneo-skill/teneo command "amazon" "product <ASIN> <domain>" --room <roomId>
~/teneo-skill/teneo command "amazon" "search <keywords> <page> <domain> <currency> <sort-by>" --room <roomId>
~/teneo-skill/teneo command "amazon" "reviews <ASIN> <domain> <currency>" --room <roomId>
~/teneo-skill/teneo command "amazon" "help" --room <roomId>
Setup
This agent is accessed via the Teneo CLI — a bash tool. No SDK import or runtime plugin required.
Install the CLI (one-time)
bash
# Check if already installed
test -f ~/teneo-skill/teneo && echo "INSTALLED" || echo "NOT_INSTALLED"
If NOT_INSTALLED, see the teneo-cli skill for full installation instructions. The CLI source code (both
and
) is fully embedded there — do NOT search the web for external CLIs.
Supported Networks
| Network | Chain ID | USDC Contract |
|---|
| Base | | 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913
|
| Peaq | | 0xbbA60da06c2c5424f03f7434542280FCAd453d10
|
| Avalanche | | 0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E
|
Usage Examples
Extract product details
bash
~/teneo-skill/teneo command "amazon" "product <ASIN> <domain>" --room <roomId>
Response is JSON. Extract the
field for formatted text.
Search for products on Amazon with optional pagination, country filter, and sorting. Results can be sorted by bestsellers, most_recent, price_low_to_high, price_high_to_low, featured, or average_review. Use quotes for multi-word queries (e.g., "word1 word2").
bash
~/teneo-skill/teneo command "amazon" "search <keywords> <page> <domain> <currency> <sort-by>" --room <roomId>
Response is JSON. Extract the
field for formatted text.
Extract product reviews
bash
~/teneo-skill/teneo command "amazon" "reviews <ASIN> <domain> <currency>" --room <roomId>
Response is JSON. Extract the
field for formatted text.
Displays all available commands with a short description of their purpose, required inputs, and expected outputs.
bash
~/teneo-skill/teneo command "amazon" "help" --room <roomId>
Response is JSON. Extract the
field for formatted text.
Agent Info