Install
openclaw skills install @linkfox-ai/linkfox-amazon-product-detail通过ASIN获取亚马逊商品详细信息,包括标题、图片、五点描述、规格参数、A+页面、价格、评分评论、变体等。当用户提到亚马逊商品详情、ASIN查询、商品页面数据、Listing分析、五点描述提取、商品图片获取、变体查看、竞品Listing研究、价格查询、评论拆解、商品规格查询、Amazon product details, ASIN lookup, listing analysis, bullet points, variant info, product pricing, ratings and reviews, A+ content, product specifications, product images时触发此技能。即使用户未明确说"商品详情",只要其需求涉及通过ASIN获取亚马逊商品页面的结构化数据,也应触发此技能。
openclaw skills install @linkfox-ai/linkfox-amazon-product-detailThis skill guides you on how to retrieve and analyze detailed Amazon product information by ASIN, helping Amazon sellers and researchers extract comprehensive listing data from product pages across 22 Amazon marketplaces.
This tool performs front-end simulation of Amazon product pages to extract structured detail data. It returns rich information including the product title, main image, additional images, bullet points (About This Item), product specifications, A+ content description, pricing, ratings distribution, variant structure, and optionally "Frequently Bought Together" and "Related Products" data.
Billing note: This tool is billed per ASIN queried. Because the cost is higher than search-based tools, guide users to query only the ASINs they truly need rather than large exploratory batches.
Batch support: Up to 40 ASINs can be queried in a single request, provided as a comma-separated string.
| Parameter | Required | Default | Description |
|---|---|---|---|
| asins | Yes | -- | Comma-separated ASIN list (up to 40). Example: B072MQ5BRX,B08N5WRWNW |
| amazonDomain | No | amazon.com | Amazon marketplace domain. See Supported Marketplaces below |
| language | No | -- | Locale code for response language, e.g. en_US, de_DE, ja_JP |
| deliveryZip | No | -- | Postal/ZIP code for delivery-dependent pricing and availability |
| device | No | desktop | Device type: desktop, mobile, or tablet |
| returnBoughtTogether | No | false | Include "Frequently Bought Together" products in the response |
| returnRelatedProducts | No | false | Include "Related Products" list in the response |
| returnAuthorsReviews | No | false | Include top customer reviews in the response |
| Domain | Country |
|---|---|
| amazon.com | United States |
| amazon.co.uk | United Kingdom |
| amazon.de | Germany |
| amazon.fr | France |
| amazon.it | Italy |
| amazon.es | Spain |
| amazon.co.jp | Japan |
| amazon.ca | Canada |
| amazon.com.au | Australia |
| amazon.com.br | Brazil |
| amazon.in | India |
| amazon.nl | Netherlands |
| amazon.se | Sweden |
| amazon.pl | Poland |
| amazon.sg | Singapore |
| amazon.sa | Saudi Arabia |
| amazon.ae | United Arab Emirates |
| amazon.com.tr | Turkey |
| amazon.com.mx | Mexico |
| amazon.eg | Egypt |
| amazon.cn | China |
| amazon.com.be | Belgium |
Default marketplace is amazon.com (US). Use amazon.com when the user doesn't specify a marketplace.
POST /amazon/product/detail(完整参数/响应/错误码见 references/api.md)python scripts/amazon_product_detail.py '<JSON 参数>' [--inline]输出策略(脚本默认行为):
<cwd>/linkfox/<YYYY-MM-DD>/<session>/data/linkfox-amazon-product-detail-<timestamp>.json(<cwd> 为脚本执行时的工作目录,在 Claude Code 里即当前项目目录;<session> 取自环境变量 SESSION_ID,按用户任务自动聚合;禁止写入 /tmp,当前目录不可写则报错)total/costToken、最大列表字段的长度 + 前 3 条样本)--inline 强制全量打印到 stdout(同样落盘)读数据建议:先看摘要判断是否足够;需要具体字段时优先用 jq或ConvertFrom-Json 从保存的 json 文件按需抽取,避免整份 JSON 进入上下文。
发生以下异常情况时,采用以下措施来处理:
LINKFOX_AGENT_API_KEY,也未配置 LINKFOXAGENT_API_KEY。1. Basic single-ASIN lookup
Look up the details of ASIN B072MQ5BRX on Amazon US.
Parameters: {"asins": "B072MQ5BRX"}
2. Multi-ASIN batch lookup
Get product details for B072MQ5BRX and B08N5WRWNW.
Parameters: {"asins": "B072MQ5BRX,B08N5WRWNW"}
3. Lookup on a non-US marketplace
Fetch product info for B09V3KXJPB on Amazon Germany.
Parameters: {"asins": "B09V3KXJPB", "amazonDomain": "amazon.de"}
4. Lookup with reviews and bought-together
Get full product details including reviews and frequently bought together for B08N5WRWNW on Amazon Japan.
Parameters: {"asins": "B08N5WRWNW", "amazonDomain": "amazon.co.jp", "returnBoughtTogether": true, "returnAuthorsReviews": true}
5. Competitor listing comparison
Compare bullet points and pricing for these 3 ASINs: B072MQ5BRX, B08N5WRWNW, B09V3KXJPB.
Parameters: {"asins": "B072MQ5BRX,B08N5WRWNW,B09V3KXJPB"}
6. Mobile-specific product page check
Show me how product B072MQ5BRX looks on mobile in the UK.
Parameters: {"asins": "B072MQ5BRX", "amazonDomain": "amazon.co.uk", "device": "mobile"}
productImageUrls, thumbnail, imageUrl), present them as clickable links or embedded images as appropriatecustomerReviews data is present, show the star distribution (5-star through 1-star percentages) alongside the overall rating and total review countApplicable -- Tasks that require structured Amazon product page data:
| User Says | Scenario |
|---|---|
| "Look up this ASIN", "Get product details for ..." | Single/batch ASIN detail lookup |
| "What are the bullet points for this product" | Listing content extraction |
| "Show me competitor listings" | Multi-ASIN comparison |
| "What's the price of this ASIN on Amazon DE" | Cross-marketplace price check |
| "How many reviews does this product have" | Rating & review analysis |
| "What variants does this product offer" | Variant structure inspection |
| "Get the A+ content / product description" | Product description retrieval |
| "What's the main image for this ASIN" | Product image extraction |
| "Is this product Prime eligible" | Eligibility / badge check |
| "What are the product specs / dimensions" | Specification lookup |
Not applicable -- Needs beyond product detail page data:
Boundary judgment: When users say "analyze this product" or "research this ASIN", if it boils down to retrieving the current product page data (title, price, bullets, images, reviews, variants), this skill applies. If they need historical trends, sales estimates, or advertising insights, it does not apply.
按动态规则计费:消耗积分 = 成功返回商品数 × 15。
重要:本技能的服务按倍数动态计算,可能一次性消耗大量积分,必须提醒用户,由用户决定是否继续。
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.