linkfox-wallysmarter-product-detail
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseWallySmarter Product Detail
WallySmarter 商品详情查询
This skill retrieves detailed product information from Walmart via WallySmarter, including pricing history and sales volume trends.
本技能通过WallySmarter从Walmart获取详细的商品信息,包括价格历史和销量趋势。
Core Concepts
核心概念
WallySmarter Product Detail looks up a single Walmart product by its ItemId and returns comprehensive product attributes along with historical pricing and sales data. This is a product-level deep-dive tool, complementing the broader skill that operates at the search/listing level.
linkfox-walmart-searchData scope: Returns current product attributes (title, price, brand, ratings, fulfillment type, etc.) plus historical stats when is enabled (default).
includeStatsNon-structured output: The tool returns mixed structured and non-structured data. It does NOT support secondary analysis via .
@智能数据查询WallySmarter 商品详情查询通过ItemId查询单个Walmart商品,返回全面的商品属性以及历史价格和销量数据。这是一款产品级深度分析工具,可补充面向搜索/列表层面的技能。
linkfox-walmart-search数据范围:返回当前商品属性(标题、价格、品牌、评分、履约类型等),当启用时(默认开启)还会返回历史统计数据。
includeStats非结构化输出:该工具返回结构化与非结构化混合数据,不支持通过进行二次分析。
@智能数据查询Parameter Guide
参数指南
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| productId | integer | Yes | — | Walmart Item ID. Found in product URLs: |
| includeStats | boolean | No | true | Whether to include historical price and sales data |
| 参数 | 类型 | 必填 | 默认值 | 描述 |
|---|---|---|---|---|
| productId | integer | 是 | — | Walmart商品ID,可在商品URL中找到: |
| includeStats | boolean | 否 | true | 是否包含历史价格和销量数据 |
Product Data Fields
产品数据字段
| Field | Description |
|---|---|
| title | Product title |
| description | Product description |
| price | Current selling price (USD) |
| wasPrice | Strikethrough price (USD) |
| minPrice | Lowest price (USD) |
| brand | Brand name |
| rating | Average rating (0.0–5.0) |
| reviews | Total review count |
| salesEstimate | Estimated sales volume (units) |
| revenue | Estimated revenue (USD) |
| sellerName | Seller name |
| fulfillmentType | Fulfillment: MARKETPLACE or WFS |
| productPageUrl | Product page URL |
| imageUrl | Product image URL |
| departmentName | Department category name |
| departmentId | Department ID |
| listingScore | Listing quality score |
| contentScore | Content quality score |
| outOfStock | Stock status: 0=in stock, 1=out of stock |
| sponsored | Ad flag: 0=organic, 1=sponsored |
| isBranded | Brand flag: 0=no, 1=yes |
| multipleOptionsAvailable | Variant flag: 0=no, 1=yes |
| usItemId | Internal US Item ID |
| createdAt | Product creation timestamp |
| updatedAt | Last update timestamp |
| stats | Historical price and sales trend data object |
| 字段 | 描述 |
|---|---|
| title | 商品标题 |
| description | 商品描述 |
| price | 当前售价(美元) |
| wasPrice | 划线价(美元) |
| minPrice | 最低价(美元) |
| brand | 品牌名称 |
| rating | 平均评分(0.0–5.0) |
| reviews | 总评论数 |
| salesEstimate | 预估销量(件) |
| revenue | 预估营收(美元) |
| sellerName | 卖家名称 |
| fulfillmentType | 履约类型:MARKETPLACE或WFS |
| productPageUrl | 商品页面URL |
| imageUrl | 商品图片URL |
| departmentName | 部门分类名称 |
| departmentId | 部门ID |
| listingScore | 商品列表质量评分 |
| contentScore | 内容质量评分 |
| outOfStock | 库存状态:0=有货,1=缺货 |
| sponsored | 广告标识:0=自然流量,1=付费推广 |
| isBranded | 品牌标识:0=无品牌,1=有品牌 |
| multipleOptionsAvailable | 变体标识:0=无变体,1=有多变体 |
| usItemId | 美国区内部商品ID |
| createdAt | 商品创建时间戳 |
| updatedAt | 最后更新时间戳 |
| stats | 历史价格和销量趋势数据对象 |
Usage Examples
使用示例
1. Basic product lookup (with history)
Get full details for a Walmart product including price and sales trends:
json
{"productId": 5177343351}2. Product detail only (no history)
Get product attributes without historical data for faster response:
json
{"productId": 5169493923, "includeStats": false}1. 基础商品查询(含历史数据)
获取Walmart商品的完整详情,包括价格和销量趋势:
json
{"productId": 5177343351}2. 仅商品详情(不含历史数据)
仅获取商品属性,不包含历史数据以加快响应速度:
json
{"productId": 5169493923, "includeStats": false}Display Rules
展示规则
- Present data clearly: Show product details in a structured format. Do not add subjective business recommendations unless asked.
- Price formatting: Display current price alongside wasPrice when available to highlight discounts. Always show USD symbol.
- Trend summary: When stats data is available, summarize price and sales trends (e.g., "Price dropped 15% over the last 30 days").
- Score context: Explain listingScore and contentScore in context (higher = better quality listing).
- Stock and fulfillment: Clearly flag out-of-stock items and fulfillment type (WFS vs Marketplace).
- Single product: This tool queries one product at a time. If the user needs multiple products, call the tool separately for each ItemId.
- 清晰呈现数据:以结构化格式展示商品详情,除非用户要求,否则不添加主观商业建议。
- 价格格式:若有划线价(wasPrice),需与当前价格一同展示以突出折扣,始终显示美元符号。
- 趋势总结:当存在统计数据(stats)时,总结价格和销量趋势(例如:“过去30天价格下降15%”)。
- 评分说明:结合上下文解释listingScore和contentScore(分数越高表示商品列表质量越好)。
- 库存与履约:清晰标记缺货商品以及履约类型(WFS vs Marketplace)。
- 单商品查询:该工具一次仅查询一个商品。若用户需要查询多个商品,需为每个ItemId单独调用工具。
Important Limitations
重要限制
- Only supports lookup by Walmart ItemId (the numeric ID in the product URL)
- Returns non-structured data — NOT compatible with for secondary analysis
@智能数据查询 - Single ItemId per call; batch queries require multiple invocations
- Historical data availability depends on WallySmarter's tracking coverage
- 仅支持通过Walmart ItemId(商品URL中的数字ID)进行查询
- 返回非结构化数据——不兼容进行二次分析
@智能数据查询 - 每次调用仅支持一个ItemId;批量查询需多次调用
- 历史数据的可用性取决于WallySmarter的追踪覆盖范围
User Expression & Scenario Quick Reference
用户表达与场景速查
Applicable — Walmart single-product deep-dive:
| User Says | Scenario |
|---|---|
| "查一下这个Walmart商品的详情" | Basic product lookup |
| "这个沃尔玛产品最近价格走势如何" | Price trend analysis |
| "WallySmarter查Walmart商品5177343351" | Direct ID lookup |
| "沃尔玛这个产品销量怎么样" | Sales estimate check |
| "Walmart product detail for item XX" | English variant |
| "这个Walmart产品最近有没有降价" | Price change detection |
Not applicable — Needs beyond single product detail:
- Walmart product search by keyword (use )
linkfox-walmart-search - Bulk product comparison across multiple items simultaneously
- Walmart seller account or advertising metrics
- Real-time inventory or delivery estimates
- Category-level market analysis
Boundary judgment: If the user has a specific Walmart product ID or URL and wants detailed attributes, pricing history, or sales trends, this skill applies. If they want to search/browse products by keyword or category, use instead.
linkfox-walmart-searchFeedback:
Auto-detect and report feedback via the Feedback API when any of the following apply:
- The functionality or purpose described in this skill does not match actual behavior
- The skill's results do not match the user's intent
- The user expresses dissatisfaction or praise about this skill
- Anything you believe could be improved
Call the feedback API as specified in . Do not interrupt the user's flow.
references/api.mdFor more high-quality, professional cross-border e-commerce skills, visit LinkFox Skills.
适用场景——沃尔玛单商品深度分析:
| 用户表述 | 场景 |
|---|---|
| "查一下这个Walmart商品的详情" | 基础商品查询 |
| "这个沃尔玛产品最近价格走势如何" | 价格趋势分析 |
| "WallySmarter查Walmart商品5177343351" | 直接ID查询 |
| "沃尔玛这个产品销量怎么样" | 预估销量查询 |
| "Walmart product detail for item XX" | 英文表述场景 |
| "这个Walmart产品最近有没有降价" | 价格变动检测 |
不适用场景——超出单商品详情的需求:
- 通过关键词搜索Walmart商品(使用)
linkfox-walmart-search - 同时对比多个商品的批量分析
- Walmart卖家账户或广告指标
- 实时库存或配送预估
- 品类级市场分析
边界判断:若用户提供了具体的Walmart商品ID或URL,且需要详细属性、价格历史或销量趋势,则适用此技能。若用户希望通过关键词或品类搜索/浏览商品,请使用。
linkfox-walmart-search反馈机制:
当出现以下任意情况时,自动检测并通过反馈API提交反馈:
- 本技能描述的功能或用途与实际行为不符
- 技能结果与用户意图不匹配
- 用户表达了对本技能的不满或赞扬
- 任何你认为可以改进的地方
按照中的说明调用反馈API,请勿打断用户流程。
references/api.md如需更多高质量、专业的跨境电商技能,请访问LinkFox Skills。