← Back to Skills Marketplace
linkfox-ai

Keepa Product Detail

by linkfox-ai · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
95
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install linkfox-keepa-product-detail
Description
通过ASIN获取亚马逊商品详情,包括价格、标题、主图、上架日期、材质、重量、变体月销量及近12个月的月销数据。当用户查询亚马逊商品详情、ASIN查询、商品定价、销售排名历史、月销量趋势、商品尺寸、FBA费用、产品规格、批量ASIN查询、Keepa product details, ASIN detail look...
README (SKILL.md)

Keepa Product Data Request

This skill guides you on how to retrieve Amazon product details via the Keepa product request API, helping Amazon sellers and analysts obtain structured product data for one or more ASINs across multiple Amazon marketplaces.

Core Concepts

The Keepa Product Request API returns detailed product listing data from Amazon, sourced through Keepa. Given one or more ASINs and a marketplace, it returns comprehensive product information: pricing, title, main image, listing date, material, weight, dimensions, sales rank, monthly sales units (current and up to 12 months of history), FBA fees, ratings, review counts, category tree, and more.

Key points:

  • You can query up to 100 ASINs in a single request by separating them with commas.
  • The domain parameter is a numeric marketplace ID (e.g., 1 = Amazon.com US), not a country code.
  • Setting history to 1 includes historical sales data (monthly sales for up to 12 prior months, average sales rank over 30/90/180 days). Setting it to 0 returns only current product information.
  • The response does not include product descriptions or reviews content.

Parameter Guide

domain (Required)

Numeric Amazon marketplace ID. The mapping is:

Domain ID Marketplace
1 Amazon.com (US)
2 Amazon.co.uk (UK)
3 Amazon.de (Germany)
4 Amazon.fr (France)
5 Amazon.co.jp (Japan)
6 Amazon.ca (Canada)
8 Amazon.it (Italy)
9 Amazon.es (Spain)
10 Amazon.in (India)
11 Amazon.com.mx (Mexico)
12 Amazon.com.br (Brazil)

Default to 1 (US) when the user does not specify a marketplace.

asin (Required)

One or more Amazon Standard Identification Numbers. For multiple ASINs, separate with commas. Maximum 100 ASINs per request, with a total string length limit of 3000 characters.

history (Optional)

Whether to include historical data such as monthly sales for the past 12 months and average sales rank over 30/90/180 days. Set to 1 to include history, 0 (default) for basic info only.

Usage Examples

1. Single ASIN lookup (US marketplace, basic info)

{"asin": "B0088PUEPK", "domain": "1"}

2. Single ASIN with historical sales data

{"asin": "B0088PUEPK", "domain": "1", "history": 1}

3. Batch lookup of multiple ASINs (Germany)

{"asin": "B0088PUEPK,B00U26V4VQ,B07M68S376", "domain": "3", "history": 1}

4. Product lookup on Amazon Japan

{"asin": "B09V3KXJPB", "domain": "5", "history": 0}

5. Competitor comparison across multiple ASINs (US, with sales history)

{"asin": "B0CXYZ1234,B0CXYZ5678,B0CXYZ9012,B0CXYZABCD", "domain": "1", "history": 1}

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

Display Rules

  1. Present data clearly: Show product details in well-structured tables. Group related fields (e.g., dimensions together, sales data together) for readability.
  2. Price and currency: Always display the price alongside its currency (e.g., "$29.99 USD"). The currency field in the response indicates the local currency.
  3. Sales trend: When historical data is included, present the 12-month sales trend in a table or describe the trajectory (growing, declining, stable) to help users quickly assess momentum.
  4. Dimensions and weight: Convert millimeter values to more intuitive units when appropriate (e.g., show both mm and inches, or mm and cm). Note that weight is in grams.
  5. Unavailable data: Fields with value 0 or -1 indicate data is unavailable. Do not display these as actual measurements; instead note "N/A" or omit them.
  6. Image display: If imageUrl is present, display the product image to help users visually identify the product.
  7. Error handling: When a query fails, explain the issue based on the response and suggest corrections (e.g., invalid ASIN format, unsupported marketplace).
  8. Large batch results: For batch queries with many ASINs, present a summary table first and offer to show individual product details on request.

Important Limitations

  • No product descriptions or reviews: The API does not return product description text or review content.
  • Maximum 100 ASINs per request: Batch queries are capped at 100 ASINs.
  • ASIN string length limit: The asin parameter has a maximum length of 3000 characters.
  • Historical data is optional: Monthly sales history is only returned when history is set to 1.
  • Data freshness: The lastUpdate field indicates when the product data was last refreshed.

User Expression & Scenario Quick Reference

Applicable -- Product data retrieval by ASIN:

User Says Scenario
"Look up this ASIN", "Get product details for B0XXXXXXXX" Single ASIN lookup
"What's the price of this product on Amazon" Price query
"How many units does this product sell per month" Monthly sales check
"Compare these ASINs", "batch lookup these products" Multi-ASIN comparison
"Show me the sales trend for this ASIN" Historical sales analysis
"What category is this product in" Category / classification lookup
"Product dimensions", "how much does it weigh" Physical specs query
"FBA fees for this product" Fee estimation
"When was this product listed", "listing date" Listing age / launch date
"Is this product FBA or FBM" Fulfillment method check

Not applicable -- Needs beyond ASIN-level product data:

  • Search term / keyword analysis (use ABA data tools instead)
  • Product reviews or listing copywriting content
  • Advertising / PPC campaign data
  • Seller account or store-level analytics
  • Product research without specific ASINs (e.g., "find trending products in kitchen category")
  • Price history charts or Buy Box history over time (only current and average rank data are available)

Boundary judgment: When users say "product research" or "competitor analysis", if they have specific ASINs and want structured product data (price, sales, dimensions, category), this skill applies. If they want keyword-level analysis, market-wide trends without specific ASINs, or advertising metrics, this skill 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, set LinkFox Skills.

Usage Guidance
What to check before installing: - Confirm the API key requirement: ask the publisher to declare LINKFOXAGENT_API_KEY in the registry metadata (primaryEnv / requires.env). The code and api.md require this environment variable; the current metadata omits it. - Treat LINKFOXAGENT_API_KEY as a secret: only provide it if you trust the LinkFox service and the skill owner. The skill will send ASINs (and any parameters you include) to https://tool-gateway.linkfox.com/keepa/productRequest and may call https://skill-api.linkfox.com for feedback. - Verify the endpoints and the organization: tool-gateway.linkfox.com / skill-api.linkfox.com and the Feishu doc link (yxgb3sicy7.feishu.cn) are named in the docs — confirm those are legitimate for your use case and acceptable for where your data will be sent. - If you need higher assurance, request the publisher to: (a) add LINKFOXAGENT_API_KEY to the declared required env vars, (b) provide a privacy/data-handling statement, and (c) explain why no other credentials are needed. - Consider limiting autonomous invocation or only invoking the skill manually if you do not want the agent to call external APIs without an explicit prompt. Bottom line: the skill's behavior aligns with its stated purpose, but the missing declared API credential and the external network calls are meaningful inconsistencies — resolve those before trusting secrets to this skill.
Capability Analysis
Type: OpenClaw Skill Name: linkfox-keepa-product-detail Version: 1.0.0 The skill is designed to retrieve Amazon product data (pricing, sales, dimensions) via the Keepa API through a LinkFox gateway. The Python script (keepa_product_detail.py) implements standard API calling logic using environment variables for authentication and contains no evidence of malicious execution, data exfiltration, or obfuscation. The instructions in SKILL.md and the API documentation in references/api.md are consistent with the stated functionality and do not contain harmful prompt injections.
Capability Assessment
Purpose & Capability
The skill's functionality (query Keepa-like productRequest) matches the included code and documentation. However, the registry metadata lists no required environment variables or primary credential while both references/api.md and scripts/keepa_product_detail.py clearly require LINKFOXAGENT_API_KEY. The missing declared env var is an incoherence.
Instruction Scope
SKILL.md and the script instruct the agent to POST JSON containing ASIN(s), domain, and history to an external API (https://tool-gateway.linkfox.com/keepa/productRequest). The instructions don't request unrelated local files or other credentials. Note: queries (including batch ASINs) and response data are sent to external LinkFox endpoints; if the user includes extra context beyond ASINs that data would also be transmitted.
Install Mechanism
No install spec; skill is instruction-only with a small helper script. No downloads or archive extraction. This is low-risk from an installation perspective.
Credentials
The code and API doc expect a secret API key in LINKFOXAGENT_API_KEY, but the skill metadata does not declare any required env vars or a primary credential. Requesting an API key for the LinkFox gateway is proportionate to the stated purpose, but the omission in metadata is a red flag (missing declaration increases the chance a user won't notice or understand what credential is required or where it goes).
Persistence & Privilege
always is false and disable-model-invocation is false (normal). The skill does not request system-wide configuration changes or persistent privileges. Autonomous invocation plus external network access is the normal platform model; combine this with the missing env declaration when considering risk.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install linkfox-keepa-product-detail
  3. After installation, invoke the skill by name or use /linkfox-keepa-product-detail
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release
Metadata
Slug linkfox-keepa-product-detail
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Keepa Product Detail?

通过ASIN获取亚马逊商品详情,包括价格、标题、主图、上架日期、材质、重量、变体月销量及近12个月的月销数据。当用户查询亚马逊商品详情、ASIN查询、商品定价、销售排名历史、月销量趋势、商品尺寸、FBA费用、产品规格、批量ASIN查询、Keepa product details, ASIN detail look... It is an AI Agent Skill for Claude Code / OpenClaw, with 95 downloads so far.

How do I install Keepa Product Detail?

Run "/install linkfox-keepa-product-detail" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Keepa Product Detail free?

Yes, Keepa Product Detail is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Keepa Product Detail support?

Keepa Product Detail is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Keepa Product Detail?

It is built and maintained by linkfox-ai (@linkfox-ai); the current version is v1.0.0.

💬 Comments