编程

TikTok Shop-商品详情

试用

查询 TikTok Shop 公共商品详情。输入完整商品 URL 或 19 位商品 ID,可指定美国、英国、东南亚及欧洲主要站点,返回商品标题、类目、价格、销量、SKU 库存、图片、店铺、评论概况、物流与促销等分组数据。当用户提到 TikTok Shop 商品详情、TikTok 商品链接解析、商品 ID 查询、价格库存核对、SKU 变体、竞品页面拆解、TikTok product details、TikTok Shop listing lookup 时触发。即使用户未明确说“商品详情”,只要希望根据一个 TikTok Shop 商品 URL 或 19 位商品 ID 读取当前公开商品页数据,也应触发此技能。

它能做什么

查询 TikTok Shop 公共商品详情。输入完整商品 URL 或 19 位商品 ID,可指定美国、英国、东南亚及欧洲主要站点,返回商品标题、类目、价格、销量、SKU 库存、图片、店铺、评论概况、物流与促销等分组数据。当用户提到 TikTok Shop 商品详情、TikTok 商品链接解析、商品 ID 查询、价格库存核对、SKU 变体、竞品页面拆解、TikTok product details、TikTok Shop listing lookup 时触发。即使用户未明确说“商品详情”,只要希望根据一个 TikTok Shop 商品 URL 或 19 位商品 ID 读取当前公开商品页数据,也应触发此技能。

技能文档

TikTok Shop Product Detail Lookup

Fetch the current public detail of one TikTok Shop product by product URL or 19-digit product ID, with an optional marketplace region.

Core Concepts

  • One product per call: productInput identifies one product; this is not a search or ranking tool.
  • Marketplace context: region selects the storefront context and defaults to US.
  • Readable grouped data: the service returns a stable, readable set of product-detail groups.
  • Current snapshot: values reflect what the public storefront exposes at request time, not historical analytics.

Data Fields

Each object in data may contain these top-level groups:

FieldDescription
productIdTikTok Shop product ID
statusPlatform product status code; do not infer availability from this field alone
titleProduct title
categoryCategory name and ID
pricingCurrency, sale price, original price, discount, and source pricing fields
salesPublic sold count and related sales display data
inventoryTotal stock, SKUs, variant properties, prices, and default selection
mediaProduct image URLs and image metadata
sellerSeller ID, shop name, rating, location, and available shop data
reviewsPublic review summary when available
shippingLogistics and shipping modules when available
actionsPurchase-button and favorite-state data
additionalOther readable promotion, rights, review-entry, and product modules

Nested fields vary by product and region. Preserve the returned values rather than inventing missing fields.

Parameter Guide

ParameterRequiredDefaultDescription
productInputYes-TikTok HTTPS URL on tiktok.com or a subdomain, using the default HTTPS port and a path containing product/<19-digit-id>; or a 19-digit product ID passed as a string
regionNoUSUppercase storefront code: US, GB, ID, MY, TH, VN, PH, SG, DE, FR, IT, or ES

调用方式

  • API 端点POST /tiktok/shop/product/detail(完整参数/响应/错误码见 references/api.md
  • Python 脚本python scripts/tiktok_shop_product_detail.py '' [--inline]
  • 成本约束:本工具会消耗积分;同一会话同一参数组合默认只调用一次,脚本带 24h 本地缓存。失败/空结果不得自动换关键词、翻页或改邮编连续试探;需要继续检索时先向用户说明会产生额外消耗。

输出策略(脚本默认行为)

  • 始终将完整响应写入 /linkfox///data/linkfox-tiktok-shop-product-detail-.json 为脚本执行时的工作目录,在 Claude Code 里即当前项目目录; 取自环境变量 SESSION_ID,按用户任务自动聚合;禁止写入 /tmp,当前目录不可写则报错)
  • 响应体 ≤ 8 KB:落盘后把完整 JSON 打印到 stdout
  • 响应体 > 8 KB:落盘后 stdout 只输出摘要(顶层字段、常见计数如 total/costToken、最大列表字段的长度 + 前 3 条样本)
  • --inline 强制全量打印到 stdout(同样落盘)

读数据建议:先看摘要判断是否足够;需要具体字段时优先用 jqConvertFrom-Json 从保存的 json 文件按需抽取,避免整份 JSON 进入上下文。

解决认证和积分问题

发生以下异常情况时,采用 references/onboarding.md 引导解决问题:

异常情况

  • 未配置 API Key:环境变量未配置 LINKFOX_AGENT_API_KEY,也未配置 LINKFOXAGENT_API_KEY
  • 响应 401 或 402 状态码
  • 响应提示积分或余额不足:消息含“积分余额不足/计费不足/余额不足/quota exceeded/insufficient balance/套餐到期/需充值/请充值”或类似含义。

Usage Examples

Product URL

python scripts/tiktok_shop_product_detail.py '{"productInput":"https://shop.tiktok.com/view/product/1729937400435937604","region":"US"}'

Product ID for the UK storefront

python scripts/tiktok_shop_product_detail.py '{"productInput":"1729937400435937604","region":"GB"}'

Display Rules

  1. Lead with the product title, product ID, requested region, category, and returned status.
  2. Show sale/original price with the returned currency; never convert currencies unless the user asks separately.
  3. Present SKU variants, variant prices, and stock in a table when available.
  4. Render product images inline when useful, but avoid flooding the response with every image.
  5. Show seller, public sold count, review summary, and shipping information only when present.
  6. Treat status, stock, and purchase-button data together; do not call a product “available” from one field alone.
  7. Report missing, empty, or inconsistent fields as unavailable rather than estimating them.
  8. For large nested sections, summarize first and read exact fields from the saved JSON only as needed.

Important Limitations

  1. Public fields can vary by product, seller, region, and storefront context.
  2. URL inputs must include a product/<19-digit-id> path segment; use the 19-digit product ID directly when another TikTok URL format is unavailable.
  3. A product may be removed, unavailable, or out of stock and still return structured metadata.
  4. This tool does not provide historical price/stock trends, ranking lists, or guaranteed sales analytics.
  5. This tool does not manage an authorized seller account or edit listings; use the TikTok Shop ERP product skill for seller operations.
  6. The readable response can be large because SKU, media, shipping, and additional modules retain nested source fields.

User Expression & Scenario Quick Reference

Applicable — one known TikTok Shop product:

User SaysScenario
“查这个 TikTok Shop 链接的商品详情”URL detail lookup
“这个 19 位 TikTok 商品 ID 卖什么?”Product ID lookup
“看看这个商品的价格、SKU 和库存”Current listing audit
“提取这个 TikTok 商品的图片和店铺信息”Media and seller extraction

Not applicable:

  • TikTok product search, bestseller rankings, or multi-product screening
  • Historical GMV, creator, livestream, or video-attribution analytics
  • Authorized shop listing creation, editing, price changes, or stock changes
  • TikTok video-page or creator-profile analysis

积分消耗规则

消耗 63 积分。

用户会因积分消耗而支付费用。重复查询不同地区或不同商品会分别计费;继续调用前应让用户知晓额外消耗。

Feedback:

Auto-detect and report feedback via the Feedback API when the described capability differs from actual behavior, results miss the user's intent, the user expresses praise or dissatisfaction, or the skill can be improved. Follow references/api.md without interrupting the user's flow.


For more high-quality, professional cross-border e-commerce skills, visit LinkFox Skills.

相关技能

查询TikTok Shop店铺(卖家)详情,通过sellerId获取单个店铺的完整档案,返回总销量、多周期(1天/7天/30天/90天)销量与销售额(GMV)、粉丝数、评分、评价数、好评率、送达率、回复率、在店商品数、带货达人数、带货视频数、直播数、价格区间、商品分类、预估上架时间等指标。当用户提到TikTok店铺详情、TikTok卖家详情、TikTok店铺分析、TikTok店铺数据、TikTok店铺档案、TikTok Shop store detail、TikTok seller detail、EchoTik store profile时触发此技能。即使用户未明确提及"EchoTik"或"TikTok",只要其需求涉及查询某个TikTok Shop店铺的完整详情/档案(已知sellerId),也应触发此技能。

1 次安装

批量查询TikTok商品详情数据,包括多周期销量与GMV(1天/7天/15天/30天/60天/90天/累计)、直播销量与直播GMV、带货视频与达人数据、播放量、价格、评分、评论数、佣金比例及上下架/全托管状态,支持通过商品ID或TikTok Shop商品URL批量获取。当用户提到TikTok商品详情、批量查询TikTok商品、TikTok商品销量分析、TikTok商品GMV、TikTok直播销量、TikTok带货数据、TikTok商品价格评分、批量获取TikTok商品信息、EchoTik商品详情、TikTok product detail, batch product lookup, TikTok sales analysis, TikTok GMV, TikTok live sales, TikTok influencer data时触发此技能。即使用户未明确提及"EchoTik",只要其需求涉及根据商品ID或商品URL批量获取TikTok商品的详细销售与营销数据,也应触发此技能。

查询某个TikTok Shop店铺(卖家)的在售商品列表,通过sellerId获取该店铺全部商品,返回商品标题、价格、多周期(1天/7天/15天/30天/60天/90天/总)销量与销售额(GMV)、评分、评论数、佣金比例、上架时间、带货方式、品类等指标。当用户提到TikTok店铺商品、TikTok店铺在售商品、TikTok卖家商品列表、TikTok店铺选品、查看TikTok店铺卖什么、TikTok店铺商品分析、EchoTik店铺商品、TikTok Shop seller products, TikTok store products, TikTok seller product list, EchoTik store product list时触发此技能。即使用户未明确提及"EchoTik"或"TikTok",只要其需求涉及查看某个TikTok Shop店铺(已知sellerId)的在售商品及其销量/价格/佣金表现,也应触发此技能。

查询单个 Shopee 公共商品详情。输入带有 -i.数字店铺ID.数字商品ID 的商品直链,支持新加坡、印度尼西亚、马来西亚、菲律宾、泰国、台湾、越南和巴西站点,返回来源当前可获取的价格、折扣、销量、库存、SKU 变体、图片、品牌、类目、店铺与评分等结构化数据。当用户提到 Shopee 商品详情、虾皮商品链接解析、价格库存核对、SKU 变体、竞品页面拆解、Shopee product details、Shopee listing lookup 时触发。即使用户未明确说“商品详情”,只要提供 Shopee 商品直链并希望读取当前公开页面数据,也应触发此技能。

1 次安装

Extract product search results from TikTok Shop by keyword and country region — returns product id, title, price, currency, seller, shop, rating, review count, sold count, images, SKU variants, brand, and product URL. Use when user mentions TikTok Shop, tiktok shop scraper, tiktok shop search, tikto

作者 browser-act skill

通过官方 Gecho Bridge MCP 获取完整的 TikTok Shop 商品详情,包括标题、价格、SKU、描述、销量、评分和评价。用户提供 TikTok Shop 商品 URL 或商品 ID 时使用。

1 次安装