tiktok-search
Query TikTok for creator profiles, video metadata, and hashtag trends using the Scrape Creators API. Retrieve follower counts, engagement stats, and trending feed data by region, with support for pagination and trimmed responses.
TikTok Search lets you find and retrieve TikTok profiles, videos, hashtags, and trending content via API.
AI-generated summary based on this skill's SKILL.md
Install
gooseworks-ai/goose-skills/tiktok-search · repository language: Python
git clone https://github.com/gooseworks-ai/goose-skills
cp -r goose-skills/skills/social/capabilities/tiktok-search ~/.claude/skills/tiktok-searchFrequently asked questions
AI-generated answers based on this skill's SKILL.md and metadata
What can tiktok-search help me find on TikTok?
tiktok-search lets you query TikTok for creator profiles, video metadata, and hashtag trends using the Scrape Creators API. You can retrieve follower counts, engagement stats, and trending feed data by region, with support for pagination and trimmed responses to help you analyze creators, discover viral content, and monitor social media trends.
Can I search TikTok videos and find specific content?
Yes, tiktok-search supports searching TikTok videos and finding specific content. The skill's primary function is to find and analyze TikTok profiles, videos, and account information, allowing you to locate videos by various criteria and retrieve detailed metadata about them.
How do I search TikTok by hashtag with tiktok-search?
tiktok-search enables hashtag searching on TikTok through its hashtag trend discovery features. You can search TikTok hashtags and discover related trending content, then browse the results to find videos and creators associated with those hashtags across different regions.
What's trending on TikTok using this skill?
tiktok-search lets you browse current trending videos and feeds by region, and monitor viral content and hashtag trends on TikTok. The skill retrieves trending feed data organized by location, helping you stay updated on what's currently popular in your area of interest.
Can tiktok-search help me research TikTok creators?
Absolutely. tiktok-search supports researching TikTok creators and influencers for social media analysis. You can look up creator profiles, retrieve follower counts and engagement statistics, and analyze account information to understand creator performance and influence.
What license does tiktok-search use?
tiktok-search is released under the MIT license, which permits free use, modification, and distribution of the skill for both commercial and private purposes.
SKILL.md
rendered from the published skill — quoted content, verbatim
TikTok Search
Setup
Read your credentials from ~/.gooseworks/credentials.json:
export GOOSEWORKS_API_KEY=$(python3 -c "import json;print(json.load(open('$HOME/.gooseworks/credentials.json'))['api_key'])")
export GOOSEWORKS_API_BASE=$(python3 -c "import json;print(json.load(open('$HOME/.gooseworks/credentials.json')).get('api_base','https://api.gooseworks.ai'))")
If ~/.gooseworks/credentials.json does not exist, tell the user to run: npx gooseworks login
All endpoints use Bearer auth: -H "Authorization: Bearer $GOOSEWORKS_API_KEY"
Search TikTok for profiles, videos, and hashtag content.
When to Use
- User asks about a TikTok account
- User wants to find TikTok videos
- User asks about trending TikTok content
- Social media research
How It Works
Uses the Scrape Creators API via Orthogonal to scrape TikTok data including profiles, hashtags, and trending content.
Usage
Get TikTok Profile
```bash curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \ -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
(truncated - see the full file via the links below)
Read as markdown · JSON record · Browse the source repository
File tree — 2 files
skills/social/capabilities/tiktok-search/SKILL.md
skills/social/capabilities/tiktok-search/skill.meta.json