linkfox-temu-manage-product-us

Manage Temu Partner US product listings through 24 bg.local and temu.local APIs.

17|3|Updated Jun 18, 2026
One-click install
npx skills add https://github.com/w9uk5ie8v/LinkFoxSkills --skill linkfox-temu-manage-product-us-w9uk5ie8v
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: linkfox-temu-manage-product-us
Source: https://github.com/w9uk5ie8v/LinkFoxSkills/tree/main/linkfox-temu-manage-product-us
Command: npx skills add https://github.com/w9uk5ie8v/LinkFoxSkills --skill linkfox-temu-manage-product-us-w9uk5ie8v

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve? Managing Temu US Partner product listings requires calling dozens of distinct bg.local and temu.local APIs with correct authentication, parameters, and gateway routing, which is error-prone when done manually. ## Core Features & Use Cases - Product Query & Retrieval: List, search, and fetch full product details, SKU lists, stock levels, and publish status via scripts like us_manage_list_query.py and us_manage_detail_query.py. - Product Modification: Perform partial or full edits, delete products, adjust inventory, set sale/pre-sale status, and update external SKU codes through the LinkFox gateway. - Compliance & Attributes: Query compliance to-do lists, edit qualification documents and actual photos, run category prechecks, and fetch property templates. - Use Case: A Temu US seller needs to update a product title and increase stock for a SKU; the skill runs us_manage_partial_update.py and us_manage_stock_edit.py with a stored accessToken via the LinkFox gateway. ## Quick Start Ask the assistant to list your Temu US products by running the us_manage_list_query.py script with your accessToken after exporting your LINKFOXAGENT_API_KEY.

Frequently Asked Questions about linkfox-temu-manage-product-us

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I list and query Temu US products via API?▼

Run us_manage_list_query.py with your accessToken and a request body containing pageNo, pageSize, goodsSearchType, and goodsStatusFilterType. The script posts to the LinkFox gateway using type bg.local.goods.list.query and returns paginated goods with IDs, prices, and stock.

How do I update Temu product title or stock programmatically?▼

Use us_manage_partial_update.py with goodsBasic.goodsName for title edits, and us_manage_stock_edit.py with skuStockChangeList for inventory changes. Both require a goodsId and a valid Temu accessToken passed through the LinkFox proxy.

What authentication does the Temu Partner US API need?▼

Two tokens are required: a LinkFox user token set as LINKFOXAGENT_API_KEY for gateway access, and a Temu accessToken copied manually from the seller console's authorization management page. You can also save tokens locally with save_temu_access_token.py and reference them by storeKey.

Does this skill support Temu EU or global marketplaces?▼

No, this skill only covers the Partner US Manage Product menu with site defaulting to us. For Europe use linkfox-temu-manage-product-eu, and for other regions use linkfox-temu-manage-product-global, as documented in the skill's routing guidance.

Why does my Temu API call return gateway error code 1002 or 1003?▼

Code 1002 indicates invalid parameters or an invalid LinkFox token, so verify LINKFOXAGENT_API_KEY and request fields. Code 1003 means gateway forwarding failed, typically due to an expired Temu accessToken, missing IP whitelist configuration, or network issues.