Amazon Store Pricing
/install linkfox-amazon-store-pricing
Amazon 店铺 Product Pricing
本 skill 与 linkfox-amazon-store-auth、linkfox-amazon-store-report、linkfox-amazon-store-listings 同属 Amazon Store 系列:先 POST /spApi/storeTokens 取 accessToken,再 POST /spApi/developerProxy 转发上游 GET 或 POST(与 listings 的 PUT/PATCH 代理方式一致)。
官方参考索引
| 能力 | 文档 |
|---|---|
| getPricing | getPricing |
| getCompetitivePricing | getCompetitivePricing |
| getListingOffers | getListingOffers |
| getItemOffers | getItemOffers |
| getItemOffersBatch | getItemOffersBatch |
| getListingOffersBatch | getListingOffersBatch |
| getFeaturedOfferExpectedPriceBatch | getFeaturedOfferExpectedPriceBatch |
| getCompetitiveSummary | getCompetitiveSummary |
Prerequisites(必须先读)
本 skill 依赖 linkfox-amazon-store-auth。
- 运行
python scripts/check_auth_dependency.py;若 exit code 42 且 stderr 含DEPENDENCY_MISSING:,请先安装linkfox-amazon-store-auth。 - 不要在本 skill 内绕过依赖实现授权或令牌逻辑。
Current Capabilities(脚本一览)
| 能力 | developerProxy path(要点) |
脚本 |
|---|---|---|
| getPricing | products/pricing/v0/price + Query |
get_pricing.py |
| getCompetitivePricing | products/pricing/v0/competitivePrice + Query |
get_competitive_pricing.py |
| getListingOffers | products/pricing/v0/listings/{sku}/offers + Query |
get_listing_offers.py |
| getItemOffers | products/pricing/v0/items/{asin}/offers + Query |
get_item_offers.py |
| getItemOffersBatch | batches/products/pricing/v0/itemOffers,POST JSON body |
post_item_offers_batch.py |
| getListingOffersBatch | batches/products/pricing/v0/listingOffers,POST JSON body |
post_listing_offers_batch.py |
| getFeaturedOfferExpectedPriceBatch | batches/products/pricing/2022-05-01/offer/featuredOfferExpectedPrice,POST |
post_featured_offer_expected_price_batch.py |
| getCompetitiveSummary | batches/products/pricing/2022-05-01/items/competitiveSummary,POST |
post_competitive_summary_batch.py |
批量脚本(post_*_batch.py)在默认模式下会按 Amazon 要求组装子请求;高级用法可设 useAmazonRequestShape: true,直接传 requests 为官方原始数组(仍受条数上限约束)。共享逻辑见 scripts/_spapi_pricing_common.py(仅供同目录脚本 import,非独立 CLI)。
Quick Parameters(摘要)
- getPricing / getCompetitivePricing:
sellerId、region、marketplaceId(或marketplaceIds取首)、itemType、asins或skus(≤20);getPricing 另有itemCondition、offerType;getCompetitivePricing 另有customerType。 - getListingOffers / getItemOffers:
sku+path 或asin+path;itemCondition必填;可选customerType。 - Item / Listing Offers Batch:
requests数组,默认每项为简化对象(见references/api.md);1~20 条(FOEP 批量脚本为 最多 40 条)。 - getCompetitiveSummary 批量:每项需
asin、marketplaceId、includedData(非空字符串数组);可选lowestPricedOffersInputs。 - getFeaturedOfferExpectedPriceBatch:每项需
marketplaceId、sku、segment(对象,结构以官方为准)。
Scripts
get_pricing.py·get_competitive_pricing.py·get_listing_offers.py·get_item_offers.pypost_item_offers_batch.py·post_listing_offers_batch.py·post_featured_offer_expected_price_batch.py·post_competitive_summary_batch.pycheck_auth_dependency.py·_spapi_pricing_common.py(内部模块)
export LINKFOXAGENT_API_KEY="\x3Cyour-key>"
python scripts/get_item_offers.py '{"sellerId":"A1...","region":"NA","asin":"B0...","marketplaceId":"ATVPDKIKX0DER","itemCondition":"New"}'
python scripts/post_item_offers_batch.py '{"sellerId":"A1...","region":"NA","requests":[{"asin":"B0...","marketplaceId":"ATVPDKIKX0DER","itemCondition":"New"}]}'
Display Rules
MarketplaceId(单数)与 Listings 的marketplaceIds勿混用。- 先看网关
errcode/httpStatus,再解析各脚本对应的解析字段(如itemOffers、itemOffersBatch、competitiveSummary等)。 - POST 类接口:
stdout中含requestBody(脚本组装的 Amazon 请求体),便于排查。 - 白名单:除
products/pricing/...外,批量路径以batches/products/pricing/...开头;1005 时需后端放行对应前缀。 - 各接口 Usage plan 不同(尤其 2022-05-01 批量约 0.033 req/s),注意 429。
Important Limitations
- 权限:Product Pricing 及相关角色;部分 2022-05-01 能力可能另有应用内配置要求,以 Amazon 为准。
- FOEP 批量:
segment须符合官方模型;条数上限脚本按 40 校验(与文档「up to 40」一致)。 - 返回结构以 Amazon schema 为准;详见
references/api.md。
Feedback: 见 references/api.md,skillName:linkfox-amazon-store-pricing。
更多跨境 skill:LinkFox Skills
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install linkfox-amazon-store-pricing - 安装完成后,直接呼叫该 Skill 的名称或使用
/linkfox-amazon-store-pricing触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Amazon Store Pricing 是什么?
亚马逊店铺商品定价(与 linkfox-amazon-store-auth / linkfox-amazon-store-report / linkfox-amazon-store-listings 同系列),经 /spApi/developerProxy 调用 SP-API Product Pricing:v0... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 36 次。
如何安装 Amazon Store Pricing?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install linkfox-amazon-store-pricing」即可一键安装,无需额外配置。
Amazon Store Pricing 是免费的吗?
是的,Amazon Store Pricing 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Amazon Store Pricing 支持哪些平台?
Amazon Store Pricing 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Amazon Store Pricing?
由 linkfox-ai(@linkfox-ai)开发并维护,当前版本 v0.0.1。