linkfox-sorftime-amazon-product-query

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Sorftime Product Search

Sorftime 产品搜索

This skill guides you on how to search and filter Amazon products via Sorftime across multiple dimensions, helping Amazon sellers discover products, analyze competitors, and explore market opportunities.
本技能将指导您如何通过Sorftime进行亚马逊产品的多维度搜索与筛选,帮助亚马逊卖家发掘产品、分析竞品并探索市场机会。

Core Concepts

核心概念

Sorftime Product Search supports multi-dimensional product retrieval with 16 query types, single or multi-condition AND combinations, and historical monthly snapshot lookback from January 2024. Data covers pricing, BSR rankings, monthly sales, FBA fees, and profit analysis.
Key differentiator: This tool is for searching and filtering across products. If you need detailed trend data (sales/price/BSR history) for a specific ASIN, use the Sorftime Product Detail skill instead.
Sorftime 产品搜索支持16种查询类型的多维度产品检索,支持单条件或多条件AND组合,还可回看2024年1月起的历史月度快照。数据涵盖定价、BSR排名、月销量、FBA费用及利润分析。
核心差异点:本工具用于跨产品的搜索与筛选。若您需要特定ASIN的详细趋势数据(销量/价格/BSR历史),请使用Sorftime 产品详情技能。

Data Fields

数据字段

Response data covers the following categories (see
references/api.md
for complete field reference):
  • Basic info: ASIN, title, brand, listing URL, images (main + list), parent ASIN, variation count, weight, size
  • Pricing & profit: current price, sale price (after coupon), strikethrough price, coupon, FBA fees (with detail breakdown), platform fee, profit amount & rate
  • Sales: monthly sales units, monthly revenue, daily sales, daily revenue (values of -1 = cannot estimate)
  • Rankings: BSR rank, category, sub-category rankings
  • Ratings: rating score, rating count
  • Listing info: listing date, days online
  • Seller: Buybox seller name/ID/country, FBA status, seller count
  • Listing features: A+ content, video, brand store
响应数据涵盖以下类别(完整字段参考请见
references/api.md
):
  • 基础信息:ASIN、标题、品牌、Listing链接、图片(主图+附图)、父ASIN、变体数量、重量、尺寸
  • 定价与利润:当前价格、促销价(优惠券后)、划线价、优惠券、FBA费用(含明细)、平台费、利润额及利润率
  • 销量数据:月销量、月销售额、日销量、日销售额(值为-1表示无法估算)
  • 排名数据:BSR排名、类目排名、子类目排名
  • 评分数据:评分星级、评论数量
  • Listing信息:上架日期、在线时长
  • 卖家信息:Buybox卖家名称/ID/国别、FBA状态、卖家数量
  • Listing特色:A+内容、视频、品牌店铺

Supported Marketplaces

支持的站点

US (United States), GB (United Kingdom), DE (Germany), FR (France), IN (India), CA (Canada), JP (Japan), ES (Spain), IT (Italy), MX (Mexico), AE (United Arab Emirates), AU (Australia), BR (Brazil), SA (Saudi Arabia)
Default marketplace is US. Use
us
when the user doesn't specify a marketplace.
Note: Sorftime uses lowercase codes (e.g.,
us
,
gb
,
de
), and UK is coded as
gb
(not
uk
).
US(美国)、GB(英国)、DE(德国)、FR(法国)、IN(印度)、CA(加拿大)、JP(日本)、ES(西班牙)、IT(意大利)、MX(墨西哥)、AE(阿联酋)、AU(澳大利亚)、BR(巴西)、SA(沙特阿拉伯)
默认站点为US。用户未指定站点时,使用
us
注意:Sorftime使用小写站点代码(如
us
gb
de
),英国的代码为
gb
(而非
uk
)。

调用方式

调用方式

  • API 端点
    POST /sorftime/amazon/productQuery
    (完整参数/响应/错误码见
    references/api.md
  • Python 脚本
    python scripts/sorftime_product_search.py '<JSON 参数>' [--inline]
  • 成本约束:本工具会消耗积分;同一会话同一参数组合默认只调用一次,脚本带 24h 本地缓存。失败/空结果不得自动换关键词、翻页或改邮编连续试探;需要继续检索时先向用户说明会产生额外消耗。
输出策略(脚本默认行为)
  • 始终将完整响应写入
    <cwd>/linkfox/<YYYY-MM-DD>/<session>/data/linkfox-sorftime-amazon-product-query-<timestamp>.json
    <cwd>
    为脚本执行时的工作目录,在 Claude Code 里即当前项目目录;
    <session>
    取自环境变量
    SESSION_ID
    ,按用户任务自动聚合;禁止写入 /tmp,当前目录不可写则报错)
  • 响应体 ≤ 8 KB:落盘后把完整 JSON 打印到 stdout
  • 响应体 > 8 KB:落盘后 stdout 只输出摘要(顶层字段、常见计数如
    total
    /
    costToken
    、最大列表字段的长度 + 前 3 条样本)
  • --inline
    强制全量打印到 stdout(同样落盘)
读数据建议:先看摘要判断是否足够;需要具体字段时优先用
jq
ConvertFrom-Json
从保存的 json 文件按需抽取,避免整份 JSON 进入上下文。
  • API 端点
    POST /sorftime/amazon/productQuery
    (完整参数/响应/错误码见
    references/api.md
  • Python 脚本
    python scripts/sorftime_product_search.py '<JSON 参数>' [--inline]
  • 成本约束:本工具会消耗积分;同一会话同一参数组合默认只调用一次,脚本带有24小时本地缓存。失败/空结果不得自动更换关键词、翻页或修改邮编连续试探;需要继续检索时,需先向用户说明会产生额外消耗。
输出策略(脚本默认行为)
  • 始终将完整响应写入
    <cwd>/linkfox/<YYYY-MM-DD>/<session>/data/linkfox-sorftime-amazon-product-query-<timestamp>.json
    <cwd>
    为脚本执行时的工作目录,在Claude Code中即当前项目目录;
    <session>
    取自环境变量
    SESSION_ID
    ,按用户任务自动聚合;禁止写入/tmp,当前目录不可写则报错)
  • 响应体 ≤ 8 KB:落盘后将完整JSON打印到stdout
  • 响应体 > 8 KB:落盘后stdout仅输出摘要(顶层字段、常见计数如
    total
    /
    costToken
    、最大列表字段的长度+前3条样本)
  • 添加
    --inline
    参数可强制将全量内容打印到stdout(同样会落盘)
读数据建议:先查看摘要判断是否满足需求;需要具体字段时,优先使用
jq
ConvertFrom-Json
从保存的JSON文件中按需抽取,避免整份JSON进入上下文。

解决认证和积分问题

解决认证和积分问题

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

异常情况

异常情况

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

How to Build Queries

如何构建查询

The key parameters are
marketplace
(required),
queryMode
,
queryType
, and
queryValue
. The query system has two modes and 16 filter types that can be combined flexibly.
关键参数为
marketplace
(必填)、
queryMode
queryType
queryValue
。查询系统包含两种模式和16种筛选类型,可灵活组合。

Principles for Building Queries

查询构建原则

  1. Always specify the marketplace: Use lowercase site codes, e.g.,
    us
    ,
    de
    ,
    jp
  2. Choose the right query mode: Use
    queryMode=1
    for a single filter; use
    queryMode=2
    to combine multiple filters with AND logic
  3. Match queryType with queryValue format: Each queryType expects a specific format - see the table below. Mismatched formats will cause errors
  4. Mind price units: Price filters (queryType=8) use smcurrency unit (cents for USD), so $19.99 =
    1999
  5. Use open ranges when appropriate: Omit one end for open range -
    ,1000
    means "up to 1000";
    100,
    means "100 or more"
  6. Use queryMonth for historical comparison: Format
    yyyy-MM
    ; compare with a second call without queryMonth to see changes over time
  1. 始终指定站点:使用小写站点代码,如
    us
    de
    jp
  2. 选择正确的查询模式:单筛选条件使用
    queryMode=1
    ;多条件AND组合使用
    queryMode=2
  3. 匹配queryType与queryValue格式:每种queryType对应特定格式——见下表。格式不匹配会导致错误
  4. 注意价格单位:价格筛选(queryType=8)使用smcurrency单位(美元为美分),因此$19.99需写为
    1999
  5. 适时使用开放范围:省略一端表示开放范围——
    ,1000
    表示"最高1000";
    100,
    表示"100及以上"
  6. 使用queryMonth进行历史对比:格式为
    yyyy-MM
    ;与不带queryMonth的第二次调用结果对比,查看数据变化

Query Types (queryType, for queryMode=1)

查询类型(queryType,适用于queryMode=1)

queryTypeNamequeryValue FormatExample
1ASIN SimilarASIN
B0CVM8TXHP
2CategoryNodeId
3743561
3BrandBrand name
Anker
4Seller NameStore name
AnkerDirect
5Seller IDSellerId
A294P4X9EWVXLJ
6ABA KeywordKeyword
Power Bank
7Title/Attribute MatchKeywords
10,000mAh 30W
8Price Range
min,max
(in cents)
1,1000
(=$0.01~$10)
9Monthly Sales Range
min,max
100,1000
10Seasonal ProductsMonth list
1,2,3
(peak in Jan-Mar)
11Listing Date Range
start,end
(yyyy-MM-dd)
2024-06-01,2024-12-01
12Rating Range
min,max
3,5
13Review Count Range
min,max
10,500
14Rank Range
bsr_min,bsr_max;sub_min,sub_max
500,5000;1,100
15Fulfillment
FBA
/
FBM
FBA,FBM
16Variation Count
min,max
1,50
Important: queryType=1 (ASIN Similar) finds products similar to the given ASIN, not the ASIN itself. To query a single product's detail, use the Sorftime Product Detail skill.
queryType名称queryValue格式示例
1ASIN相似款ASIN
B0CVM8TXHP
2类目NodeId
3743561
3品牌品牌名称
Anker
4卖家名称店铺名称
AnkerDirect
5卖家IDSellerId
A294P4X9EWVXLJ
6ABA关键词关键词
Power Bank
7标题/属性匹配关键词
10,000mAh 30W
8价格范围
min,max
(单位:美分)
1,1000
(=$0.01~$10)
9月销量范围
min,max
100,1000
10季节性产品月份列表
1,2,3
(1-3月为销售旺季)
11上架日期范围
start,end
(yyyy-MM-dd)
2024-06-01,2024-12-01
12评分范围
min,max
3,5
13评论数量范围
min,max
10,500
14排名范围
bsr_min,bsr_max;sub_min,sub_max
500,5000;1,100
15配送方式
FBA
/
FBM
FBA,FBM
16变体数量
min,max
1,50
重要提示:queryType=1(ASIN相似款)用于查找与指定ASIN相似的产品,而非ASIN本身。若需查询单个产品的详情,请使用Sorftime 产品详情技能。

Historical Snapshots (queryMonth)

历史快照(queryMonth)

Set
queryMonth
(format
yyyy-MM
) to query a past month's product data snapshot. This lets users compare historical prices, rankings, and sales with current data.
  • Supported range: January 2024 to present (~2 years)
  • US, GB, DE support full "unlimited" lookback mode
  • Other sites support Top 100 products only in lookback
  • AU, BR, IN do not support lookback
设置
queryMonth
(格式为
yyyy-MM
)可查询过去某一月的产品数据快照。用户可借此对比历史价格、排名和销量与当前数据。
  • 支持范围:2024年1月至今(约2年)
  • US、GB、DE支持完整的"无限制"回看模式
  • 其他站点仅支持回看Top 100产品
  • AU、BR、IN不支持回看功能

Query Examples for Common Scenarios

常见场景查询示例

1. Fititors of a given ASIN
queryMode: 1, queryType: 1, queryValue: B0CVM8TXHP, marketplace: us
2. Browse a category's top products
queryMode: 1, queryType: 2, queryValue: 3743561, marketplace: us
3. Analyze a brand's product portfolio
queryMode: 1, queryType: 3, queryValue: Anker, marketplace: us
4. Search by ABA keyword
queryMode: 1, queryType: 6, queryValue: Power Bank, marketplace: us
5. Discover seasonal products (Q4 peak)
queryMode: 1, queryType: 10, queryValue: 10,11,12, marketplace: us
6. Compare historical vs current data
queryMonth: 2024-11, queryMode: 1, queryType: 2, queryValue: 3743561, marketplace: us
-> Compare with current data (no queryMonth) to see price/sales changes
7. Multi-condition: new FBA products with good sales
queryMode: 2
queryValue: [{"QueryType":11,"Content":"2024-06-01,"},{"QueryType":9,"Content":"300,"},{"QueryType":15,"Content":"FBA"}]
marketplace: us
8. Find low-price high-sales products
queryMode: 2
queryValue: [{"QueryType":8,"Content":",2000"},{"QueryType":9,"Content":"500,"}]
marketplace: us
9. Check a seller's product portfolio
queryMode: 1, queryType: 4, queryValue: AnkerDirect, marketplace: us
1. 查找指定ASIN的竞品
queryMode: 1, queryType: 1, queryValue: B0CVM8TXHP, marketplace: us
2. 浏览类目下的热销产品
queryMode: 1, queryType: 2, queryValue: 3743561, marketplace: us
3. 分析品牌的产品组合
queryMode: 1, queryType: 3, queryValue: Anker, marketplace: us
4. 通过ABA关键词搜索
queryMode: 1, queryType: 6, queryValue: Power Bank, marketplace: us
5. 发掘季节性产品(第四季度旺季)
queryMode: 1, queryType: 10, queryValue: 10,11,12, marketplace: us
6. 对比历史与当前数据
queryMonth: 2024-11, queryMode: 1, queryType: 2, queryValue: 3743561, marketplace: us
-> 与当前数据(不带queryMonth)对比,查看价格/销量变化
7. 多条件筛选:热销新品FBA产品
queryMode: 2
queryValue: [{"QueryType":11,"Content":"2024-06-01,"},{"QueryType":9,"Content":"300,"},{"QueryType":15,"Content":"FBA"}]
marketplace: us
8. 查找低价高销量产品
queryMode: 2
queryValue: [{"QueryType":8,"Content":",2000"},{"QueryType":9,"Content":"500,"}]
marketplace: us
9. 查看卖家的产品组合
queryMode: 1, queryType: 4, queryValue: AnkerDirect, marketplace: us

Display Rules

展示规则

  1. Present data only: Show query results in clear tables without subjective business advice
  2. Ranking clarification: When showing ranking data, remind users that lower values mean better rankings
  3. Pagination notice: Search results return max 100 products per page, up to 200 pages. If results are large, show highlights and remind users to paginate
  4. Sales estimation caveat: Values of
    -1
    in sales/revenue fields mean "cannot estimate" - explain this to the user rather than showing -1 directly
  5. Error handling: When a query fails, explain the reason based on the
    msg
    field and suggest adjusting query criteria
  1. 仅展示数据:以清晰表格呈现查询结果,不提供主观商业建议
  2. 排名说明:展示排名数据时,提醒用户数值越低排名越好
  3. 分页提示:搜索结果每页最多返回100个产品,最多200页。若结果数量较大,展示重点内容并提醒用户分页查看
  4. 销量估算说明:销量/销售额字段中的
    -1
    表示"无法估算"——需向用户说明,而非直接展示-1
  5. 错误处理:查询失败时,根据
    msg
    字段解释原因,并建议调整查询条件

Important Limitations

重要限制

  • Pagination: Max 100 products per page, max 200 pages
  • **Historisupported
  • Non-structured data: Results do not support secondary analysis via
    _dataQuery_executeDynamicQuery
  • Sales estimation: Products in non-standard categories may return -1 for sales fields
  • ABA keyword search (queryType=6): Currently only supports ABA keywords, not arbitrary search terms
  • 分页限制:每页最多100个产品,最多200页
  • 历史数据支持:仅部分站点支持完整历史回看,部分站点仅支持Top 100产品
  • 非结构化数据:结果不支持通过
    _dataQuery_executeDynamicQuery
    进行二次分析
  • 销量估算:非标准类目的产品可能返回-1的销量字段值
  • ABA关键词搜索(queryType=6):目前仅支持ABA关键词,不支持任意搜索词

User Expression & Scenario Quick Reference

用户表达与场景速查

Applicable - Product search and filtering on Amazon:
User SaysScenario
"找一下这个类目下卖得好的产品"Category exploration
"Anker品牌有哪些热销产品"Brand analysis
"这个ASIN的竞品有哪些"Competitor discovery
"帮我找一些季节性产品"Seasonal product discovery
"新品中月销量超过500的有哪些"Filtered product discovery
"去年双十一这个类目的价格快照"Historical snapshot comparison
"这个卖家还卖了什么产品"Seller portfolio
"帮我筛选利润率高于30%的FBA产品"Profit-focused filtering
"月销量1000以上,评分4星以上的产品"Multi-condition filtering
"标题包含wireless charger的产品"Title keyword search
Not applicable - Needs beyond product search:
  • Detailed trend/history data for a specific ASIN (use Sorftime Product Detail)
  • ABA search term ranking data (use ABA Data Explorer)
  • Advertising / PPC strategy
  • Product reviews content analysis
  • Patent or trademark checks
Boundary judgment: When users say "competitor analysis" or "market research", if they need to discover and compare products across dimensions (category, brand, price range, etc.), this skill applies. If they need historical trend curves for a specific ASIN, use the Prt Detail skill. If they need keyword search volume data, use ABA Data Explorer.
适用场景——亚马逊产品搜索与筛选:
用户表述场景
"找一下这个类目下卖得好的产品"类目探索
"Anker品牌有哪些热销产品"品牌分析
"这个ASIN的竞品有哪些"竞品发掘
"帮我找一些季节性产品"季节性产品发掘
"新品中月销量超过500的有哪些"筛选式产品发掘
"去年双十一这个类目的价格快照"历史快照对比
"这个卖家还卖了什么产品"卖家产品组合分析
"帮我筛选利润率高于30%的FBA产品"利润导向筛选
"月销量1000以上,评分4星以上的产品"多条件筛选
"标题包含wireless charger的产品"标题关键词搜索
不适用场景——超出产品搜索的需求:
  • 特定ASIN的详细趋势/历史数据(使用Sorftime 产品详情技能)
  • ABA搜索词排名数据(使用ABA Data Explorer)
  • 广告/PPC策略
  • 产品评论内容分析
  • 专利或商标查询
边界判断:当用户提及"竞品分析"或"市场调研"时,若需求为跨维度(类目、品牌、价格范围等)发掘和对比产品,适用本技能;若需求为特定ASIN的历史趋势曲线,使用产品详情技能;若需求为关键词搜索量数据,使用ABA Data Explorer。

积分消耗规则

积分消耗规则

按动态规则计费:消耗积分 = Sorftime内部查询次数 × 12。Sorftime内部查询次数:不同查询条件需要的查询次数可能不同,该次数由Sorftime决定。
重要:本技能的服务按倍数动态计算,可能一次性消耗大量积分,必须提醒用户,由用户决定是否继续。
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, visit LinkFox Skills.
按动态规则计费:消耗积分 = Sorftime内部查询次数 × 12。Sorftime内部查询次数:不同查询条件所需的查询次数可能不同,该次数由Sorftime决定。
重要:本技能的服务按倍数动态计算,可能一次性消耗大量积分,必须提醒用户,由用户决定是否继续。
反馈:
出现以下任一情况时,通过Feedback API自动检测并上报反馈:
  1. 本技能描述的功能或用途与实际行为不符
  2. 技能结果与用户意图不符
  3. 用户表达对本技能的不满或赞扬
  4. 任何您认为可以改进的内容
按照
references/api.md
中的指定方式调用反馈API,请勿中断用户流程。

如需更多高质量、专业的跨境电商技能,请访问 LinkFox Skills