linkfox-junglescout-sales-estimates

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Jungle Scout — ASIN 销售估算

Jungle Scout — ASIN Sales Estimates

This skill queries daily sales estimates and last known price for a given Amazon ASIN via the Jungle Scout data source, returning day-level data points over a specified date range across 10 Amazon marketplaces.
This skill queries daily sales estimates and last known price for a given Amazon ASIN via the Jungle Scout data source, returning day-level data points over a specified date range across 10 Amazon marketplaces.

Core Concepts

Core Concepts

Jungle Scout ASIN 销售估算工具提供亚马逊各站点单个 ASIN 的日维度预估销量最近已知价格。卖家可以通过查询指定时间范围内的销量变化来:
  • 监控竞品销量:了解竞品每日出单量,评估其市场份额
  • 验证选品机会:用实际销量数据验证产品需求是否足够大
  • 追踪季节性规律:观察产品在不同月份的销量波动,判断旺淡季
  • 评估定价影响:结合价格与销量的变化关系,辅助定价决策
  • 新品表现跟踪:追踪新品上架后的销量爬升曲线
数据粒度:每条记录代表 1 天,包含该日的预估售出件数和最近已知价格(美元)。
The Jungle Scout ASIN Sales Estimate tool provides daily estimated sales volume and latest known price for individual ASINs across Amazon marketplaces. Sellers can query sales changes over a specified time range to:
  • Monitor competitor sales: Understand competitors' daily order volume and evaluate their market share
  • Validate product selection opportunities: Verify whether product demand is sufficient using actual sales data
  • Track seasonal patterns: Observe sales fluctuations of products in different months to identify peak and off-peak seasons
  • Evaluate pricing impact: Assist in pricing decisions by combining the relationship between price and sales changes
  • Track new product performance: Monitor the sales growth curve of new products after they are launched
Data Granularity: Each record represents 1 day, including the estimated number of units sold and the latest known price (USD) for that day.

Data Fields

Data Fields

Output Fields

Output Fields

FieldAPI NameDescriptionExample
ASINasin查询的 ASINB0CXXX1234
数据标识id数据点标识sales_estimate_B0CXXX1234_20260301
资源类型type固定值sales_estimate_result
父 ASINparentAsin父体 ASIN(变体场景)B0CXXX0000
是否父体isParent是否为父体商品true / false
是否变体isVariant是否为变体商品true / false
是否独立isStandalone是否为独立商品(非变体)true / false
变体列表variants该父体下的变体 ASIN 数组["B0CX1", "B0CX2"]
每日估算dailyEstimates每日数据数组见下方
消耗 TokencostToken本次调用消耗的 token 数1
FieldAPI NameDescriptionExample
ASINasinQueried ASINB0CXXX1234
Data IDidData point identifiersales_estimate_B0CXXX1234_20260301
Resource TypetypeFixed valuesales_estimate_result
Parent ASINparentAsinParent ASIN (variant scenario)B0CXXX0000
Is ParentisParentWhether it is a parent producttrue / false
Is VariantisVariantWhether it is a variant producttrue / false
Is StandaloneisStandaloneWhether it is a standalone product (non-variant)true / false
Variant ListvariantsArray of variant ASINs under this parent["B0CX1", "B0CX2"]
Daily EstimatesdailyEstimatesArray of daily dataSee below
Token CostcostTokenNumber of tokens consumed for this call1

dailyEstimates 数组中每个对象

Each Object in dailyEstimates Array

FieldAPI NameDescriptionExample
日期date数据日期(YYYY-MM-DD)2026-03-15
预估日销量estimatedUnitsSold当日预估售出件数42
最近已知价格lastKnownPrice最近已知价格(USD)29.99
FieldAPI NameDescriptionExample
DatedateData date (YYYY-MM-DD)2026-03-15
Daily Estimated Units SoldestimatedUnitsSoldEstimated number of units sold on that day42
Latest Known PricelastKnownPriceLatest known price (USD)29.99

Supported Marketplaces

Supported Marketplaces

10 个亚马逊站点:
us
(美国)、
uk
(英国)、
de
(德国)、
in
(印度)、
ca
(加拿大)、
fr
(法国)、
it
(意大利)、
es
(西班牙)、
mx
(墨西哥)、
jp
(日本)。默认站点为 us。当用户未指定站点时,使用 us。
10 Amazon marketplaces:
us
(United States),
uk
(United Kingdom),
de
(Germany),
in
(India),
ca
(Canada),
fr
(France),
it
(Italy),
es
(Spain),
mx
(Mexico),
jp
(Japan). The default marketplace is us. If the user does not specify a marketplace,
us
will be used.

API Usage

API Usage

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/junglescout_sales_estimates.py
directly to run queries.
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/junglescout_sales_estimates.py
directly to run queries.

How to Build Queries

How to Build Queries

所有四个参数均为必填
marketplace
asin
startDate
endDate
All four parameters are required:
marketplace
,
asin
,
startDate
,
endDate
.

Principles for Building API Calls

Principles for Building API Calls

  1. 站点映射:用户说"美国站"→
    us
    ,"日本站"→
    jp
    ,"德国站"→
    de
    ;未指定时默认
    us
  2. 日期格式:必须为
    YYYY-MM-DD
    ,如
    2026-03-01
  3. endDate 限制
    endDate
    必须早于当前日期(不能包含今天及未来日期)
  4. ASIN 格式:标准亚马逊 ASIN,通常以 B0 开头,共 10 位
  5. 常用时间推算
    • "过去30天" → endDate 取昨天,startDate 取30天前
    • "上个月" → 上月1日到上月末日
    • "Q3 vs Q4" → 分两次调用,分别查 7-9 月和 10-12 月
  1. Marketplace Mapping: When users say "US marketplace" →
    us
    , "Japan marketplace" →
    jp
    , "Germany marketplace" →
    de
    ; default to
    us
    if not specified
  2. Date Format: Must be
    YYYY-MM-DD
    , e.g.,
    2026-03-01
  3. endDate Restriction:
    endDate
    must be earlier than the current date (cannot include today or future dates)
  4. ASIN Format: Standard Amazon ASIN, usually starting with B0, 10 characters long
  5. Common Time Calculations:
    • "Last 30 days" → set endDate to yesterday, startDate to 30 days ago
    • "Last month" → from the 1st to the last day of the previous month
    • "Q3 vs Q4" → make two separate calls, querying July-September and October-December respectively

Common Query Scenarios

Common Query Scenarios

1. 查看竞品最近30天的销量
json
{
  "marketplace": "us",
  "asin": "B0CXXX1234",
  "startDate": "2026-03-18",
  "endDate": "2026-04-16"
}
2. 对比 Q3 与 Q4 销量表现
分两次调用:
  • Q3:
    startDate=2025-07-01
    ,
    endDate=2025-09-30
  • Q4:
    startDate=2025-10-01
    ,
    endDate=2025-12-31
3. 验证选品机会——查看产品全年销量
json
{
  "marketplace": "us",
  "asin": "B0CXXX5678",
  "startDate": "2025-04-01",
  "endDate": "2026-03-31"
}
4. 追踪新品上架表现
json
{
  "marketplace": "de",
  "asin": "B0DYYY9999",
  "startDate": "2026-01-15",
  "endDate": "2026-04-15"
}
5. 监控大促期间销量变化(如 Prime Day)
json
{
  "marketplace": "us",
  "asin": "B0CXXX1234",
  "startDate": "2025-07-01",
  "endDate": "2025-07-21"
}
1. View Competitors' Sales in the Last 30 Days
json
{
  "marketplace": "us",
  "asin": "B0CXXX1234",
  "startDate": "2026-03-18",
  "endDate": "2026-04-16"
}
2. Compare Q3 and Q4 Sales Performance
Make two separate calls:
  • Q3:
    startDate=2025-07-01
    ,
    endDate=2025-09-30
  • Q4:
    startDate=2025-10-01
    ,
    endDate=2025-12-31
3. Validate Product Selection Opportunities - View Annual Product Sales
json
{
  "marketplace": "us",
  "asin": "B0CXXX5678",
  "startDate": "2025-04-01",
  "endDate": "2026-03-31"
}
4. Track New Product Launch Performance
json
{
  "marketplace": "de",
  "asin": "B0DYYY9999",
  "startDate": "2026-01-15",
  "endDate": "2026-04-15"
}
5. Monitor Sales Changes During Promotions (e.g., Prime Day)
json
{
  "marketplace": "us",
  "asin": "B0CXXX1234",
  "startDate": "2025-07-01",
  "endDate": "2025-07-21"
}

Display Rules

Display Rules

  1. 折线图优先:建议以折线图展示每日销量变化,横轴为日期,纵轴为预估日销量;如有价格数据可叠加第二 Y 轴显示价格走势
  2. 表格辅助:同时提供数据表格供精确查阅,列包括:日期、预估销量、最近已知价格
  3. 汇总统计:在数据之后汇总关键指标——总销量、日均销量、预估总收入(总销量 × 均价)
  4. 趋势总结:简要总结趋势方向(上升/下降/平稳/周期性波动),标注销量峰值和谷值日期
  5. Error handling: When a query fails, explain the reason based on the error response and suggest adjusting parameters(如 endDate 不能包含今天或未来日期)
  1. Line Chart Priority: It is recommended to display daily sales changes with a line chart, with the horizontal axis as the date and the vertical axis as the daily estimated sales volume; if price data is available, a second Y-axis can be overlaid to show price trends
  2. Table Support: Provide a data table for precise reference at the same time, including columns: Date, Estimated Sales Volume, Latest Known Price
  3. Summary Statistics: After the data, summarize key indicators - total sales volume, average daily sales volume, estimated total revenue (total sales volume × average price)
  4. Trend Summary: Briefly summarize the trend direction (rising/falling/stable/periodic fluctuations), and mark the dates of sales peaks and troughs
  5. Error Handling: When a query fails, explain the reason based on the error response and suggest adjusting parameters (e.g., endDate cannot include today or future dates)

Important Limitations

Important Limitations

  • endDate 不可包含今天
    endDate
    必须早于当前日期,不能查询今天及未来的销量
  • 单次单 ASIN:每次调用只能查询一个 ASIN;对比多个 ASIN 需分多次调用
  • 所有参数必填
    marketplace
    asin
    startDate
    endDate
    缺一不可
  • 价格为美元
    lastKnownPrice
    单位为 USD,非本地货币
  • endDate Cannot Include Today:
    endDate
    must be earlier than the current date; sales data for today or the future cannot be queried
  • Single ASIN per Call: Only one ASIN can be queried per call; comparing multiple ASINs requires separate calls
  • All Parameters Required:
    marketplace
    ,
    asin
    ,
    startDate
    ,
    endDate
    are all mandatory
  • Price in USD:
    lastKnownPrice
    is in USD, not local currency

User Expression & Scenario Quick Reference

User Expression & Scenario Quick Reference

Applicable - ASIN 销售估算与销量趋势分析:
User SaysScenario
"这个ASIN一天能卖多少"查询近期日销量估算
"竞品最近卖得怎么样"监控竞品近30天销量
"这个产品有没有季节性"全年销量数据判断季节规律
"帮我看看这个品的销量趋势"指定时间段的销量走势
"Q4旺季销量如何"特定季度销量查询
"这个产品值不值得做"通过历史销量验证选品机会
"大促期间卖了多少"活动期间销量监控
Not applicable - 超出 ASIN 销售估算范围:
  • 关键词搜索量(需要关键词历史搜索量工具)
  • BSR 排名历史(需要 BSR 追踪工具)
  • 类目整体销量/市场规模
  • 非亚马逊平台的销量数据
  • 实时/当前时刻的销量(数据有滞后,不含今天)
Boundary judgment: When users say "销量", "日销", or "卖了多少", if they want to see a specific ASIN's daily estimated sales over a time range, this skill applies. If they want keyword search volume, category rankings, or real-time live sales, it does not apply.
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.
Applicable Scenarios - ASIN Sales Estimation and Sales Trend Analysis:
User SaysScenario
"How many units does this ASIN sell per day?"Query recent daily sales estimates
"How have competitors been selling recently?"Monitor competitors' sales in the last 30 days
"Does this product have seasonal trends?"Determine seasonal patterns using annual sales data
"Help me check the sales trend of this product"Sales trend over a specified time period
"How were sales during the Q4 peak season?"Query sales for a specific quarter
"Is this product worth selling?"Validate product selection opportunities through historical sales data
"How many units were sold during the promotion?"Monitor sales during promotional events
Not Applicable Scenarios - Beyond the Scope of ASIN Sales Estimation:
  • Keyword search volume (requires keyword historical search volume tool)
  • BSR ranking history (requires BSR tracking tool)
  • Category overall sales/market size
  • Sales data from non-Amazon platforms
  • Real-time/current sales (data has a lag, does not include today)
Boundary Judgment: When users mention "sales volume", "daily sales", or "how many units sold", if they want to view daily estimated sales for a specific ASIN over a time range, this skill applies. If they want keyword search volume, category rankings, or real-time live sales, it does not apply.
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.