TTokenySpace
返回 Skills 列表

Kalodata-TikTok达人搜索与详情

通过kalodata数据搜索TikTok电商达人榜单并查询指定达人的详细资料,支持按地区、货币、语言与日期范围查看高排名带货达人,并可用creatorId获取粉丝数、视频/直播销售额与GPM、联系方式及关联店铺。当用户提到TikTok达人搜索、TikTok达人榜单、TikTok达人排行、TikTok网红排行、Ti...

#中文
0

安装到 Tokeny(自动)

下载 ZIP
安装"linkfox-kalodata-tiktok-creator"技能
技能信息:
- 名称: Kalodata-TikTok达人搜索与详情
- 标识: linkfox-kalodata-tiktok-creator
- 描述: 通过kalodata数据搜索TikTok电商达人榜单并查询指定达人的详细资料,支持按地区、货币、语言与日期范围查看高排名带货达人,并可用creatorId获取粉丝数、视频/直播销售额与GPM、联系方式及关联店铺。当用户提到TikTok达人搜索、TikTok达人榜单、TikTok达人排行、TikTok网红排行、Ti...
- 版本: 1.0.0
下载地址:
https://www.tokeny.space/api/skills/linkfox-kalodata-tiktok-creator/download
继续

复制上方内容到 Tokeny 客户端并在会话中发送即可自动安装;也可直接 下载 ZIP并拖动到技能窗口安装。

SKILL.md

Kalodata - TikTok Creator Search & Detail

This skill supports a two-step TikTok creator workflow via the Kalodata data source:

  1. Browse creator leaderboards to discover high-performing TikTok Shop creators.
  2. Fetch one creator's full profile and performance detail by creatorId.

Use the search endpoint when the user wants rankings, influencer discovery, or creator comparison. Use the detail endpoint when the user already has a creatorId or has selected one creator from a ranking result.

Core Concepts

The creator ranking endpoint returns a paginated leaderboard filtered by region, dateRange, language, and currency. The default ranking order is by revenue (GMV) descending. Each creator row includes identity, audience, content views, sales volume, video/live revenue, and revenue growth rate.

The creator detail endpoint fetches one creator by creatorId. It returns the creator's identity, audience, revenue split, video/live metrics, product/shop counts, and contact channels. The creatorId usually comes from the ranking response field creator_id.

Both endpoints may reflect a statistical delay (T+1). See references/api.md for full request and response details.

Data Fields

Ranking rows include:

FieldDescription
creator_nicknameCreator display name
creator_handleTikTok handle
creator_idCreator unique ID; pass this as creatorId for detail lookup
creator_followersFollower count, returned as a string
content_viewsTotal content views, returned as a string
sales_volumnSales volume; field is spelled volumn
revenueTotal GMV in the requested currency
video_revenueRevenue from videos
live_revenueRevenue from livestreams
revenue_growth_rateRevenue growth rate (%)

Detail rows additionally include:

FieldDescription
creator_region / creator_status / creator_bioCreator profile metadata
new_followersNew followers in the requested date window
unit_priceAverage unit price in the requested currency
video_number / video_views / video_gpmVideo count, views, and GPM
live_number / live_views / live_gpmLivestream count, views, and GPM
product_number / shop_numberAssociated product and shop counts
creator_contact_*Email and social contact fields; often empty

Parameter Guide

Creator ranking (/kalodata/creator/rank)

ParameterTypeRequiredDescription
regionstringNoMarket region code, e.g. US
dateRangestringNoTime window, e.g. last7Day, last30Day
pageNumberintegerNoPage number, 1-5
pageSizeintegerNoPage size, 5-100
languagestringNoResponse language, e.g. zh-CN, en-US
currencystringNoCurrency for monetary metrics, e.g. USD
sortFieldobjectNoSorting specification; pass {} for default revenue ranking

Creator detail (/kalodata/creator/detail)

ParameterTypeRequiredDescription
creatorIdstringYesCreator unique ID from ranking field creator_id
regionstringNoMarket region code, e.g. US
dateRangestringNoTime window, e.g. last7Day, last30Day
languagestringNoResponse language, e.g. zh-CN, en-US
currencystringNoCurrency for monetary metrics, e.g. USD

调用方式

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

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

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

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

解决认证和积分问题

发生以下异常情况时,采用以下措施来处理:

异常情况

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

措施

Usage Examples

1. Browse top TikTok creators in the US

{"region":"US","dateRange":"last7Day","pageSize":10,"pageNumber":1,"currency":"USD"}

2. Fetch one creator's detail

{"creatorId":"7153432386608251946","region":"US","dateRange":"last7Day","currency":"USD"}

3. Discovery-to-detail workflow

Run kalodata_creator_search.py first, choose a row's creator_id, then pass that value as creatorId to kalodata_creator_detail.py.

Display Rules

  1. Present ranking results in a table with nickname, handle, followers, content views, sales volume, revenue, video/live revenue, and growth rate.
  2. Present detail results as one grouped profile: identity, audience, revenue, video, live, products/shops, and contact.
  3. Always label dateRange, region, and currency when showing metrics.
  4. Treat creator_followers and content_views as string-typed counts; parse before numeric comparison.
  5. Use the exact field name sales_volumn.
  6. Show contact fields only when populated; otherwise say no contact was provided.
  7. Preserve ranking order unless the user explicitly requests a supported sortField.

Important Limitations

  • Ranking is not keyword search; it browses leaderboards by region and time window.
  • Detail requires creatorId; it cannot find a creator by nickname or handle alone.
  • The ranking response does not include total/page count; paginate until a page returns fewer than pageSize items.
  • pageNumber is limited to 1-5 and pageSize is limited to 5-100.
  • Transient upstream errors may appear as errcode 501 with a Kalodata HTTP 554 message. Retry the same parameters once or twice; do not change parameters automatically.
  • Use the matching Kalodata product/video/shop/livestream skills for non-creator entities.

User Expression & Scenario Quick Reference

Applicable -- TikTok creator ranking or creator profile lookup:

User SaysScenario
"TikTok达人排行榜", "TikTok网红榜"Creator ranking lookup
"TikTok带货达人榜", "top TikTok creators"Creator leaderboard by region
"近7天TikTok达人榜"Time-windowed ranking
"TikTok达人详情", "达人主页数据"Creator detail lookup
"达人联系方式", "creator contact"Contact channels
"kalodata creator search/detail"Direct data source reference

Not applicable -- Needs beyond TikTok creators:

  • TikTok product/video/shop/livestream rankings or details
  • Amazon / Shopify / 1688 / other platforms' creator or product data
  • TikTok ad campaign management or content creation

积分消耗规则

每次调用消耗 7.0 积分。

用户会因积分消耗而支付费用。请充分评估:当需要高频调用本技能,或用户对积分消耗量预期不足时,务必提醒用户,由用户决定是否继续。

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, visit LinkFox Skills.

评论

加载中…