Coding

卖家精灵-竞品查询

Try it

使用卖家精灵数据在亚马逊上查找和分析竞品,覆盖12个站点,包含销量、BSR、定价、评分和增长趋势等商品指标。当用户提到竞品查询、竞品分析、ASIN反查、竞争商品研究、查找相似商品、市场竞品发现、商品对标、竞品销量估算、分析竞争Listing、competitor analysis, ASIN reverse lookup, competitor sales, competitor research, SellerSprite, market competitor discovery, competitor trends时触发此技能。即使用户未明确提及"卖家精灵"或"竞品查询",只要其需求涉及通过ASIN、关键词、卖家名称、品牌或品类发现和分析亚马逊竞品,也应触发此技能。

What it does

使用卖家精灵数据在亚马逊上查找和分析竞品,覆盖12个站点,包含销量、BSR、定价、评分和增长趋势等商品指标。当用户提到竞品查询、竞品分析、ASIN反查、竞争商品研究、查找相似商品、市场竞品发现、商品对标、竞品销量估算、分析竞争Listing、competitor analysis, ASIN reverse lookup, competitor sales, competitor research, SellerSprite, market competitor discovery, competitor trends时触发此技能。即使用户未明确提及"卖家精灵"或"竞品查询",只要其需求涉及通过ASIN、关键词、卖家名称、品牌或品类发现和分析亚马逊竞品,也应触发此技能。

The skill document

SellerSprite Competitor Lookup

This 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.

Core Concepts

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.

Supported Marketplaces

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 Guide

Search Filters

ParameterDescriptionExample
marketplaceAmazon marketplace codeUS, UK, DE, JP
keywordSearch keyword (translate to the marketplace language)wireless earbuds
asinListOne or more ASINs, comma-separated (max 40)B072MQ5BRX,B08N5WRWNW
sellerNameSeller name to filter byAnker Direct
brandBrand name to filter byAnker
nodeLabelAmazon category name (colon-separated levels)Electronics:Headphones
nodeIdPathAmazon category ID path172282
matchTypeKeyword match mode: 1 = phrase, 2 = fuzzy, 3 = exact (default 1)1
showVariationShow product variations: Y or N (default N)N
dataSnapshotMonthData snapshot month (nearly for real-time, or yyyyMM)nearly

Pagination & Sorting

ParameterDescriptionExample
pagePage number, starting from 11
sizeResults per page, 10-100 (default 50)50
order.fieldSort field (see sort options below)total_units
order.descSort direction: true = descending, false = ascendingtrue

Sort Field Options

FieldDescription
total_unitsMonthly sales units
total_amountMonthly sales revenue
bsr_rankBSR ranking
pricePrice
ratingRating score
reviewsNumber of reviews
profitGross margin
reviews_rateReview rate
available_dateListing date
questionsQ&A count
total_units_growthMonthly sales unit growth rate
total_amount_growthMonthly revenue growth rate
reviews_increasementMonthly new reviews
bsr_rank_cv7-day BSR growth count
bsr_rank_cr7-day BSR growth rate
amz_unitVariant sales units

Key Response Fields

FieldDescription
asinProduct ASIN
titleProduct title
priceCurrent price
monthlySalesUnitsMonthly sales volume
monthlySalesRevenueMonthly sales revenue
bsrBSR ranking
bsrGrowthRateBSR growth rate
bsrGrowthCountBSR growth count
ratingRating score
ratingsNumber of ratings
ratingsGrowthMonthly new ratings
ratingsRateReview rate
brandBrand name
sellerNameBuyBox seller
sellerNationBuyBox seller nationality
fulfillmentFulfillment type (AMZ/FBA/FBM)
availableDateStringListing date
profitGross margin
nodeLabelPathCategory path
imageUrlProduct image URL
monthlySalesUnitsGrowthRateMonthly sales growth rate
listingQualityScoreListing quality score
variationNumNumber of variations
parentParent ASIN
badgeBestSellerBest Seller badge (Y/N)
badgeAmazonChoiceAmazon's Choice badge (Y/N)
badgeEbcA+ Content (Y/N)
badgeVideoVideo present (Y/N)

调用方式

  • API 端点POST /sellersprite/competitor-lookup(完整参数/响应/错误码见 references/api.md
  • Python 脚本python scripts/sellersprite_competitor_lookup.py '' [--inline]
  • 成本约束:本工具会消耗积分;同一会话同一参数组合默认只调用一次,脚本带 24h 本地缓存。失败/空结果不得自动换关键词、翻页或改邮编连续试探;需要继续检索时先向用户说明会产生额外消耗。

输出策略(脚本默认行为)

  • 始终将完整响应写入 /linkfox///data/linkfox-sellersprite-competitor-lookup-.json 为脚本执行时的工作目录,在 Claude Code 里即当前项目目录; 取自环境变量 SESSION_ID,按用户任务自动聚合;禁止写入 /tmp,当前目录不可写则报错)
  • 响应体 ≤ 8 KB:落盘后把完整 JSON 打印到 stdout
  • 响应体 > 8 KB:落盘后 stdout 只输出摘要(顶层字段、常见计数如 total/costToken、最大列表字段的长度 + 前 3 条样本)
  • --inline 强制全量打印到 stdout(同样落盘)

读数据建议:先看摘要判断是否足够;需要具体字段时优先用 jqConvertFrom-Json 从保存的 json 文件按需抽取,避免整份 JSON 进入上下文。

解决认证和积分问题

发生以下异常情况时,采用 references/onboarding.md 引导解决问题:

异常情况

  • 未配置API Key:环境变量未配置 LINKFOX_AGENT_API_KEY,也未配置 LINKFOXAGENT_API_KEY
  • 响应401或402状态码
  • 响应提示积分或余额不足:消息含"积分余额不足/计费不足/余额不足/quota exceeded/insufficient balance/套餐到期/需充值/请充值",或类似含义的内容。

Usage Examples

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.

Display Rules

  1. Present data clearly: Show query results in well-formatted tables. Include key metrics such as ASIN, title, price, monthly sales, BSR, rating, and brand. Do not provide subjective business advice unless the user asks for it.
  2. Keyword language: When searching by keyword, always translate the keyword to the target marketplace language (e.g., English for US/UK, German for DE, Japanese for JP). Remind the user of this if they provide keywords in the wrong language.
  3. BSR clarification: When displaying BSR data, remind users that a lower BSR value indicates stronger sales performance.
  4. Growth metrics: When showing growth rates, clarify whether positive values mean improvement or decline (positive BSR growth count means BSR increased, which means worsened ranking).
  5. Pagination notice: When the total result count exceeds the returned page size, inform the user of the total count and offer to fetch additional pages.
  6. Badge highlights: When products carry badges (Best Seller, Amazon's Choice, A+ Content, Video), highlight these in the results as they are important competitive signals.
  7. Error handling: When a query fails, explain the reason based on the message field and suggest adjusting query parameters.
  8. Snapshot guidance: When users want to do seasonal or trend analysis, proactively suggest using historical snapshots (e.g., last year's same month) for comparison.

Important Limitations

  • Result cap: Each page returns 10-100 records (controlled by size). Use pagination for larger result sets.
  • ASIN limit: A maximum of 40 ASINs can be queried at once via asinList.
  • Historical snapshots: Only existing monthly snapshots can be queried; future dates are not supported.
  • Keyword language: Keywords should match the marketplace language for best results.

User Expression & Scenario Quick Reference

Applicable -- Amazon competitor product data queries:

User SaysScenario
"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:

  • ABA search term data or keyword ranking (use ABA Data Explorer instead)
  • Advertising / PPC campaign management
  • Product reviews content or sentiment analysis
  • Listing copywriting or optimization suggestions
  • Supplier sourcing or manufacturing costs
  • Account health or policy compliance

积分消耗规则

消耗 15 积分。

用户会因积分消耗而支付费用。请充分评估:当需要高频调用本技能,或用户对积分消耗量预期不足时,务必提醒用户,由用户决定是否继续。

Feedback:

Auto-detect and report feedback via the Feedback API when any of the following apply:

  1. The functionality or purpose described in this skill does not match actual behavior
  2. The skill's results do not match the user's intent
  3. The user expresses dissatisfaction or praise about this skill
  4. Anything you believe could be improved

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.

Related skills

使用卖家精灵数据搜索和筛选亚马逊商品,支持价格、月销量、BSR排名、毛利率、评分、配送方式、标签、卖家来源等多维度条件,覆盖多个亚马逊站点。当用户提到亚马逊选品调研、产品筛选、销量过滤、产品发掘、BSR分析、小众商品发现、竞品分析、市场机会评估、按商品维度的市场规模估算、毛利率筛选、SellerSprite product selection, Amazon product selection, sales filtering, BSR analysis, profit screening, market analysis, product selection tool时触发此技能。即使用户未明确提及"卖家精灵",只要其需求涉及筛选和分析亚马逊商品级数据进行选品,也应触发此技能。

14 installs

使用卖家精灵选市场列表能力,基于类目维度筛选亚马逊细分市场,支持市场规模、竞争度、头部集中度、卖家结构、新品占比、价格/评分/毛利区间等大量条件,用于发现可进入市场与评估选品方向。当用户提到亚马逊市场调研、细分类目研究、市场机会筛选、市场集中度分析、新品机会、选市场、SellerSprite market research、category market research时触发此技能。即使用户未明确提及"卖家精灵",只要需求是按类目维度筛选和评估亚马逊市场,也应触发此技能。

20 installs1 stars

按ASIN查找亚马逊同细分市场(Niche)竞品,支持点击转化率、综合转化率、点击量、销量、评论、评分、价格、毛利率等多维度筛选潜力竞品。当用户提到同细分竞品、ASIN竞品挖掘、Niche竞品分析、同类商品对标、ASIN对标分析、细分市场竞品列表、高转化竞品筛选、极目产品挖掘、niche competitor by ASIN, ASIN competitor analysis, same niche products, similar products discovery, conversion rate comparison, potential competitor screening, Jiimore ASIN mining时触发此技能。即使用户未明确提及"细分市场"或"Niche",只要其需求涉及根据某个ASIN挖掘同细分下的竞品列表或筛选潜力竞品,也应触发此技能。

1 installs1 stars

使用卖家精灵流量词反查能力,按ASIN查询关键词流量来源、流量占比类型、转化类型、自然位与广告位等指标,支持历史月份与多维排序。当用户提到ASIN反查流量词、流量关键词列表、关键词流量结构、自然词/广告词分析、关键词转化类型、SellerSprite traffic keyword、Amazon traffic keywords、reverse ASIN keywords时触发此技能。即使用户未明确提及"卖家精灵",只要需求是围绕某个ASIN查看其关键词流量来源与词列表,也应触发此技能。

15 installs

输入ASIN+站点,端到端完成竞品筛选(三路径算法:标品/非标品/混合)→全量数据采集(Keepa+卖家精灵+ABA+AIGC四源并行)→8维度横向对比(销量趋势/市场份额/Deal冲击/稳定性/季节性/BSR动量/价格弹性/功能参数)→A+与商品图AIGC分析→11章HTML深度报告。

1 installs

Amazon Category Research Skill for sellers. Automated ASIN analysis, competitor research, and market intelligence. Use when user mentions: 亚马逊, Amazon, 类目调研,...

12 installs