← Back to Skills Marketplace
linkfox-ai

Temu Price Global

by linkfox-ai · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
57
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install linkfox-temu-price-global
Description
Temu 全球站(非 US/EU)价格/供货价 API,经 LinkFox 网关转发 5 个接口(定价单、推荐价、SKU 供货价列表、批量改价等),默认 site=global。当用户提到 Temu Global 价格、全球站定价单、priceorder query、sku list price、查 SKU 供货...
README (SKILL.md)

Temu 全球站价格 API(linkfox-temu-price-global)

本 skill(linkfox-temu-price-global)覆盖 全球区(site=global,非美国/欧洲)Product 菜单下与价格/供货价相关的 bg.local.* / temu.local.* 接口(menu_code=fb16b05f7a904765aac4af3a24b87d4a,具体 sub_menu_code 以 Partner 文档为准)。

当前已接入 5 个接口;其余价格接口将按 Partner 文档逐条补充到 references/apis/global_price_*.py

网关(本 skill 内置)

能力 方法 路径
价格 OpenAPI(global_price_*temu_global_proxy POST https://tool-gateway.linkfox.com/temu/proxy
加签文件下载 POST https://tool-gateway.linkfox.com/temu/fileDownload

相关 skill

场景 skill
商品列表/详情/编辑/库存/上下架 linkfox-temu-manage-product-global
美国站价格 linkfox-temu-price-us
欧洲站价格 linkfox-temu-price-eu
订单查询、发货、物流 linkfox-temu-order-global
取消订单(买家+卖家) linkfox-temu-cancel-order-us

| 履约/发货(含自发货) | linkfox-temu-fulfillment-us | | 发品、类目、V2 add | linkfox-temu-add-product-us | | 半托管 temu.goods.price.list.getproductSkuIds) | linkfox-temu-add-product-usus_goods_price_list.py | | 网关与 Temu token | 本 skill scripts/ |

API Usage

文档 内容
api.md 网关、鉴权、错误码、典型流程
partner-global-catalog.md 接口目录 + Partner URL + 脚本
apis/README.md 按接口分文件apis/\x3Ctype-slug>.md

默认参数

字段 默认 说明
site global Partner Global(非 US/EU)
managementType semi-managed 半托管
tokenPurpose product-inventory 酷鸟卖家助手 token

鉴权

  1. LinkFoxLINKFOXAGENT_API_KEY → Header Authorization + Token
  2. TemuaccessTokenstoreKey

Scripts(按 type)

脚本 type 状态
global_price_baseprice_recommend.py temu.local.goods.baseprice.recommend 已接入
global_price_recommendedprice_query.py temu.local.goods.recommendedprice.query 已接入
global_price_priceorder_query.py bg.local.goods.priceorder.query 已接入
global_price_priceorder_change_sku_price.py bg.local.goods.priceorder.change.sku.price 已接入
global_price_sku_list_price_query.py bg.local.goods.sku.list.price.query 已接入
temu_global_proxy.py 任意 type 通用
temu_global_file_download.py 加签文件下载 通用

新增接口后在此表与 partner-global-catalog.md 同步登记。

示例

export LINKFOXAGENT_API_KEY="\x3Ckey>"

# 推荐基础价/供货价估算(须 catId + supplierPriceEstimateSkuQryList)
python scripts/global_price_baseprice_recommend.py '{
  "accessToken": "TOKEN",
  "site": "global",
  "tokenPurpose": "product-inventory",
  "request": {
    "supplierPriceEstimateQry": {
      "goodsBasicInfo": { "catId": 12345 },
      "supplierPriceEstimateSkuQryList": [
        {
          "specIdList": [9001],
          "externPlatformPriceInfo": { "amount": "19.99", "currency": "USD" }
        }
      ]
    }
  }
}'

# 推荐供货价查询(须 recommendedPriceType + goodsIdList,1~100 个 goodsId)
python scripts/global_price_recommendedprice_query.py '{
  "accessToken": "TOKEN",
  "site": "global",
  "tokenPurpose": "product-inventory",
  "request": {
    "recommendedPriceType": 10,
    "goodsIdList": [123456789]
  }
}'

# 定价单列表查询(白名单;分页 page/size,可选筛选)
python scripts/global_price_priceorder_query.py '{
  "accessToken": "TOKEN",
  "site": "global",
  "tokenPurpose": "product-inventory",
  "request": {
    "page": 1,
    "size": 20,
    "priceOrderType": 1,
    "orderBy": "order_create_time",
    "orderByType": 0
  }
}'

# 批量修改 SKU 基础价(白名单;须 goodsId + changeSkuPriceDTOList)
python scripts/global_price_priceorder_change_sku_price.py '{
  "accessToken": "TOKEN",
  "site": "global",
  "tokenPurpose": "product-inventory",
  "request": {
    "goodsId": 123456,
    "changeSkuPriceDTOList": [
      {
        "skuChangePriceBaseDTOList": [
          {
            "skuId": 58224724203874,
            "newSupplierPrice": { "amount": "15.99", "currency": "USD" }
          }
        ]
      }
    ]
  }
}'

# SKU 供货价列表(goodsId + skuIdList)
python scripts/global_price_sku_list_price_query.py '{
  "accessToken": "TOKEN",
  "site": "global",
  "tokenPurpose": "product-inventory",
  "request": {
    "querySupplierPriceBaseList": [
      { "goodsId": 123456789, "skuIdList": [58224724203874] }
    ]
  }
}'

Feedback: skillNamelinkfox-temu-price-global

网关与授权脚本

脚本 说明
check_linkfox_token.py 校验 LinkFox 用户 Token
temu_token_guide.py Temu accessToken 后台授权步骤
save_temu_access_token.py 保存 accessToken 到本地
list_temu_access_tokens.py 列出已保存 token
get_temu_access_token.py 读取已保存 token
temu_proxy.py 通用网关转发(多 site)
temu_file_download.py 加签文件下载(多 site)

授权说明:references/access-token.md

Usage Guidance
Install only if you intentionally want a broad LinkFox/Temu operations helper, not just a narrow Global pricing wrapper. Use least-privilege Temu tokens, avoid saving raw tokens locally when possible, do not run the unmasked token-listing or raw token retrieval helpers in logged environments, and require a manual review/confirmation step before any batch SKU price change.
Capability Tags
requires-oauth-tokenrequires-sensitive-credentials
Capability Assessment
Purpose & Capability
The stated purpose is Global Temu pricing and supply-price operations, but the artifacts include arbitrary Temu proxy calls, signed file download, multi-site proxy support, and token administration beyond the five pricing endpoints.
Instruction Scope
The pricing endpoints are documented, but generic type forwarding and file download are under-scoped for a pricing skill; batch SKU price changes are purpose-aligned but lack explicit confirmation, dry-run, or rollback guidance.
Install Mechanism
No dependency installation, background startup, or install-time execution was found; the scripts are invoked manually and VirusTotal telemetry is clean.
Credentials
The skill requires LinkFox and Temu credentials, network calls to the LinkFox gateway, and can modify commercial pricing, which is high-impact and not tightly constrained to the declared Global pricing surface.
Persistence & Privilege
Temu access tokens can be saved in plaintext under ~/.linkfox/temu-access-tokens.json, retrieved verbatim, and listed unmasked with a runtime flag; no file-permission or encryption safeguards are shown.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install linkfox-temu-price-global
  3. After installation, invoke the skill by name or use /linkfox-temu-price-global
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release
Metadata
Slug linkfox-temu-price-global
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Temu Price Global?

Temu 全球站(非 US/EU)价格/供货价 API,经 LinkFox 网关转发 5 个接口(定价单、推荐价、SKU 供货价列表、批量改价等),默认 site=global。当用户提到 Temu Global 价格、全球站定价单、priceorder query、sku list price、查 SKU 供货... It is an AI Agent Skill for Claude Code / OpenClaw, with 57 downloads so far.

How do I install Temu Price Global?

Run "/install linkfox-temu-price-global" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Temu Price Global free?

Yes, Temu Price Global is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Temu Price Global support?

Temu Price Global is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Temu Price Global?

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

💬 Comments