Back to Supported APIs

TikTok

TikTok's official APIs are good at what they are designed for, but reading public stats for an account you do not control is not one of those things. That gap is the reason most people end up looking for something else.

Why the official APIs rarely fit

The Display API works through OAuth, and the account it returns data for is the account that just authorised your app. That is the right model for a product where users connect their own profile, and the wrong one for a dashboard tracking creators who will never log into your app. The Research API does allow broader access, but it is aimed at approved research institutions rather than general product work.

So if you want follower counts for a set of public creators, the official route is either an authorisation flow per creator or an approval process you may not qualify for.

What Metrika gives you for TikTok

A public username is all you need. Metrika returns follower count, following count, and verified status.

json
{
  "data": [
    {
      "platform": "tiktok",
      "identifier": "nasa",
      "status": "available",
      "metrics": {
        "followers": { "value": 4200000, "status": "available" },
        "following": { "value": 12, "status": "available" }
      },
      "attributes": {
        "verified": { "value": true, "status": "available" }
      }
    }
  ]
}

Every datapoint carries its own status and a collected_at timestamp, so you always know how fresh a number is.

One integration, seven platforms

TikTok sits alongside Instagram, X, YouTube, LinkedIn, Facebook, and Threads behind the same endpoint and the same response shape. No per-platform client, no per-platform auth, no translating between six different ideas of what a profile looks like.

What Metrika is not

Metrika does not upload videos, read comments, pull analytics for an account you own, or touch anything private. It reads public profile datapoints and returns them as JSON.

Getting started

Create an account, generate an API key, and you can make up to 500 requests per month for free with no credit card. See the docs for authentication and the full response reference.

Get started with Metrika

Create a free account and start pulling social media datapoints in minutes. The free tier includes 500 requests per month, no credit card required.