tiktok-search

star 11

Search TikTok - find profiles, videos, hashtags, and trending content

orthogonal-sh By orthogonal-sh schedule Updated 2/27/2026

name: tiktok-search description: Search TikTok - find profiles, videos, hashtags, and trending content

TikTok Search

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

orth run scrapecreators /v1/tiktok/profile -q 'handle=charlidamelio'
curl equivalent
curl -X POST "https://api.orth.sh/v1/run" \
  -H "Authorization: Bearer $ORTHOGONAL_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"api":"scrapecreators","path":"/v1/tiktok/profile","query":{"handle":"charlidamelio"}}'

Search Hashtag Videos

orth run scrapecreators /v1/tiktok/search/hashtag -q 'hashtag=tech'

Get Trending Feed

orth run scrapecreators /v1/tiktok/get-trending-feed -q 'region=US'

Parameters

Profile

  • handle (required) - TikTok handle (without @)

Hashtag Search

  • hashtag (required) - Hashtag to search (without #)
  • region (optional) - Region for the proxy
  • cursor (optional) - Cursor for pagination
  • trim (optional) - Set to "true" for a trimmed response

Trending Feed

  • region (required) - Region for the proxy (e.g., "US")
  • trim (optional) - Set to true for a trimmed response

Response

Profile includes:

  • Username and display name
  • Bio/description
  • Follower and following counts
  • Total likes
  • Verified status
  • Profile image

Videos include:

  • Video title/description
  • View count
  • Like count
  • Comment count
  • Video URL

Examples

User: "Look up charlidamelio on TikTok"

orth run scrapecreators /v1/tiktok/profile -q 'handle=charlidamelio'

User: "What's trending on TikTok?"

orth run scrapecreators /v1/tiktok/get-trending-feed -q 'region=US'

User: "What's trending with #tech on TikTok?"

orth run scrapecreators /v1/tiktok/search/hashtag -q 'hashtag=tech'

Error Handling

  • success: false — the API may temporarily fail; retry after a few seconds
  • Private accounts cannot be accessed
  • Rate limiting may apply on rapid sequential requests

Tips

  • Remove @ from handles
  • Remove # from hashtags
  • Private accounts cannot be accessed
Install via CLI
npx skills add https://github.com/orthogonal-sh/skills --skill tiktok-search
Repository Details
star Stars 11
call_split Forks 3
navigation Branch main
article Path SKILL.md
More from Creator
orthogonal-sh
orthogonal-sh Explore all skills →