Install
openclaw skills install @linkfox-ai/linkfox-sellersprite-competitor使用卖家精灵数据在亚马逊上查找和分析竞品,覆盖12个站点,包含销量、BSR、定价、评分和增长趋势等商品指标。当用户提到竞品查询、竞品分析、ASIN反查、竞争商品研究、查找相似商品、市场竞品发现、商品对标、竞品销量估算、分析竞争Listing、competitor analysis, ASIN reverse lookup, competitor sales, competitor research, SellerSprite, market competitor discovery, competitor trends时触发此技能。即使用户未明确提及"卖家精灵"或"竞品查询",只要其需求涉及通过ASIN、关键词、卖家名称、品牌或品类发现和分析亚马逊竞品,也应触发此技能。
openclaw skills install @linkfox-ai/linkfox-sellersprite-competitorThis skill guides you on how to query and analyze Amazon competitor product data, helping Amazon sellers discover competing products, benchmark performance, and extract actionable competitive intelligence.
The SellerSprite Competitor Lookup tool provides comprehensive Amazon product data across 12 marketplaces. It allows querying products by ASIN, keyword, seller name, brand, or category, and returns detailed metrics including monthly sales volume, revenue, BSR ranking, pricing, ratings, and growth trends.
Data snapshots: The tool supports both real-time data (last 30 days) and historical monthly snapshots. Use nearly (default) for current data or a yyyyMM format (e.g., 202501) for historical snapshots. Historical snapshots capture all active listings for that month, enabling year-over-year and seasonal comparisons.
Category hierarchy: Amazon category names support multi-level paths separated by colons (:). For example, Electronics:Computers & Accessories:Monitors. Convert user-provided category descriptions into the proper colon-separated format.
US (United States), UK (United Kingdom), DE (Germany), FR (France), JP (Japan), CA (Canada), IT (Italy), ES (Spain), MX (Mexico), AU (Australia), TR (Turkey), IN (India)
Default marketplace is US. Use US when the user does not specify a marketplace.
| Parameter | Description | Example |
|---|---|---|
| marketplace | Amazon marketplace code | US, UK, DE, JP |
| keyword | Search keyword (translate to the marketplace language) | wireless earbuds |
| asinList | One or more ASINs, comma-separated (max 40) | B072MQ5BRX,B08N5WRWNW |
| sellerName | Seller name to filter by | Anker Direct |
| brand | Brand name to filter by | Anker |
| nodeLabel | Amazon category name (colon-separated levels) | Electronics:Headphones |
| nodeIdPath | Amazon category ID path | 172282 |
| matchType | Keyword match mode: 1 = phrase, 2 = fuzzy, 3 = exact (default 1) | 1 |
| showVariation | Show product variations: Y or N (default N) | N |
| dataSnapshotMonth | Data snapshot month (nearly for real-time, or yyyyMM) | nearly |
| Parameter | Description | Example |
|---|---|---|
| page | Page number, starting from 1 | 1 |
| size | Results per page, 10-100 (default 50) | 50 |
| order.field | Sort field (see sort options below) | total_units |
| order.desc | Sort direction: true = descending, false = ascending | true |
| Field | Description |
|---|---|
| total_units | Monthly sales units |
| total_amount | Monthly sales revenue |
| bsr_rank | BSR ranking |
| price | Price |
| rating | Rating score |
| reviews | Number of reviews |
| profit | Gross margin |
| reviews_rate | Review rate |
| available_date | Listing date |
| questions | Q&A count |
| total_units_growth | Monthly sales unit growth rate |
| total_amount_growth | Monthly revenue growth rate |
| reviews_increasement | Monthly new reviews |
| bsr_rank_cv | 7-day BSR growth count |
| bsr_rank_cr | 7-day BSR growth rate |
| amz_unit | Variant sales units |
| Field | Description |
|---|---|
| asin | Product ASIN |
| title | Product title |
| price | Current price |
| monthlySalesUnits | Monthly sales volume |
| monthlySalesRevenue | Monthly sales revenue |
| bsr | BSR ranking |
| bsrGrowthRate | BSR growth rate |
| bsrGrowthCount | BSR growth count |
| rating | Rating score |
| ratings | Number of ratings |
| ratingsGrowth | Monthly new ratings |
| ratingsRate | Review rate |
| brand | Brand name |
| sellerName | BuyBox seller |
| sellerNation | BuyBox seller nationality |
| fulfillment | Fulfillment type (AMZ/FBA/FBM) |
| availableDateString | Listing date |
| profit | Gross margin |
| nodeLabelPath | Category path |
| imageUrl | Product image URL |
| monthlySalesUnitsGrowthRate | Monthly sales growth rate |
| listingQualityScore | Listing quality score |
| variationNum | Number of variations |
| parent | Parent ASIN |
| badgeBestSeller | Best Seller badge (Y/N) |
| badgeAmazonChoice | Amazon's Choice badge (Y/N) |
| badgeEbc | A+ Content (Y/N) |
| badgeVideo | Video present (Y/N) |
This tool calls the LinkFox tool gateway API. See references/api.md for calling conventions, request parameters, and response structure. You can also execute scripts/sellersprite_competitor_lookup.py directly to run queries.
1. Look up competitors by ASIN
{
"marketplace": "US",
"asinList": "B072MQ5BRX,B08N5WRWNW"
}
Use case: Analyze specific competing products by their ASINs.
2. Search competitors by keyword
{
"marketplace": "US",
"keyword": "wireless earbuds",
"matchType": 1,
"order": {"field": "total_units", "desc": "true"},
"size": 20
}
Use case: Discover top-selling products for a keyword, sorted by monthly sales.
3. Filter by brand and category
{
"marketplace": "US",
"brand": "Anker",
"nodeLabel": "Electronics:Headphones",
"order": {"field": "total_amount", "desc": "true"}
}
Use case: Analyze a specific brand's product lineup within a category.
4. Find products by seller name
{
"marketplace": "DE",
"sellerName": "Anker Direct",
"order": {"field": "bsr_rank", "desc": "false"}
}
Use case: View all products from a particular seller sorted by BSR.
5. Historical snapshot comparison
{
"marketplace": "US",
"keyword": "space heater",
"dataSnapshotMonth": "202412",
"order": {"field": "total_units", "desc": "true"},
"size": 20
}
Use case: Analyze seasonal product performance using historical data snapshots.
6. Show product variations
{
"marketplace": "JP",
"asinList": "B0XXXXXXXXX",
"showVariation": "Y"
}
Use case: Examine all variation-level data for a product family.
message field and suggest adjusting query parameters.size). Use pagination for larger result sets.asinList.Applicable -- Amazon competitor product data queries:
| User Says | Scenario |
|---|---|
| "Find competitors for this ASIN" | ASIN-based competitor lookup |
| "Top sellers for wireless earbuds" | Keyword-based product discovery |
| "What is this seller selling" | Seller product portfolio analysis |
| "Show me products in Electronics category" | Category-based browsing |
| "Monthly sales for these ASINs" | Sales estimation for specific products |
| "New products gaining traction" | Growth trend detection |
| "Compare products across brands" | Brand benchmarking |
| "How was this niche last December" | Historical snapshot analysis |
| "Best sellers with high ratings" | Multi-metric filtering |
| "FBA vs FBM in this category" | Fulfillment type analysis |
Not applicable -- Needs beyond competitor product data:
Feedback:
Auto-detect and report feedback via the Feedback API when any of the following apply:
Call the feedback API as specified in references/api.md. Do not interrupt the user's flow.
For more high-quality, professional cross-border e-commerce skills, set LinkFox Skills.