TikTok

Search TikTok with one API call

Read TikTok — creator videos and hashtag search — without building or maintaining a scraper. Maintained upstream. Same response shape as every other platform here, so one parser handles all of them. 3 credits a call.

The call

curl -H "x-api-key: $SS_KEY" \
  "https://api.socialsearchapi.com/v1/tiktok/user-videos?handle=nasa"

This call costs 3 credits once you are on credits. A new account gets 5 free calls on any platform — verify an email and this command runs as-is.

What comes back

A real response from this endpoint, captured on 2026-07-25 and trimmed to one item:

{
  "success": true,
  "platform": "tiktok",
  "data": {
    "total": 10,
    "items": [
      {
        "id": "7665075736742530317",
        "platform": "tiktok",
        "type": "post",
        "text": "Something big just landed on TikTok.",
        "url": "https://www.tiktok.com/@nasa/video/7665075736742530317",
        "author": "nasa",
        "created_at": "2026-07-21T20:09:02Z",
        "metrics": {
          "comments": 818,
          "likes": 36283,
          "shares": 1945,
          "views": 218180
        },
        "extra": {
          "created_at_raw": 1784664542
        }
      }
    ]
  },
  "credits_used": 3
}

Items from TikTok carry: author, created_at, extra, id, metrics, platform, text, type, url.

Why not just scrape it yourself

TikTok signs its web requests and geo-redirects unknown clients, so a plain GET returns an About page rather than data. Reproducing the signing is a moving target that breaks on their release schedule, not yours.

  • Cost here: 3 credits a call, $0.009 at list.
  • Last verified 2026-07-25: 4,607ms for this call.
  • Coverage: Public creator content only. No private accounts, no analytics-only fields.
Full reference: every TikTok endpoint, its parameters and its price are in the API docs.

If you got here from an error


Get a free key — 5 calls, no card

Other platforms