socialsearchapi Dashboard Get a key

TikTok scraper API for videos and hashtag search

TikTok signs its web requests and geo-redirects clients it does not recognise, so a plain HTTP GET returns a marketing About page instead of data. Reproducing the signing scheme is possible but it is a moving target that breaks on TikTok's release schedule rather than yours.

Fix: one call, 2 credits
50 free credits on signup, no card
unified JSON, no proxies or parsers to keep alive

1What people try first

ApproachWhat happens
Plain HTTP GETReturns the About page. No data at all.
Research APIAcademic access only, with an application process.
Signature reimplementationWorks for a while. Then it doesn't, without warning.
Maintained APISomeone else absorbs the breakage. That is the whole product.

2The one-call fix

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

Signup is an email and a 6-digit code, no card. Create a key in the dashboard and your account starts with 50 free credits on any platform, so the command above runs as-is.

Real response from that endpoint, captured 2026-08-27:

{
  "success": true,
  "platform": "tiktok",
  "data": {
    "total": 10,
    "items": [
      {
        "id": "7678745502359342366",
        "url": "https://www.tiktok.com/@tiktok/video/7678745502359342366",
        "author": "tiktok",
        "created_at": "2026-08-27T16:14:46Z",
        "metrics": {
          "comments": 79,
          "likes": 612,
          "views": 11528,
          "shares": 8
        }
      }
    ]
  },
  "credits_used": 3
}
Get a key50 free credits ยท no card

3Related

Verified against a live TikTok response on 2026-08-27. Platform terms and pricing change often. If something here has gone stale, tell us at support@socialsearchapi.com.