TikTok Creator API: Get Creator Profiles and Availability as JSON
What a TikTok Creator API should return, why the official developer API does not expose recruiting-grade creator data, and how to pull verified creator profiles and availability into your own tools.
If you run a TikTok LIVE agency or build tools around creators, sooner or later you want a TikTok Creator API: a way to ask a URL for a list of creators and get clean JSON back instead of scrolling the app by hand. The frustrating part is that the official TikTok developer API, the one you find first, is built for login and content posting, not for the recruiting data your business actually runs on. This guide explains what a creator API should give you, why the official one does not, and how to get the data into your own tools without building a scraping operation from scratch.
What a TikTok Creator API should return
When people search for a creator API, they almost always want the same core fields: a creator's username and profile, their follower and viewer numbers, and, most importantly, whether that creator can currently be recruited by an agency. A raw username is easy to find. Knowing that the person behind it is a free agent, active, and worth contacting is the part that has real value, and it is the part that is hard to get.
A good creator API answers three questions in one response: who is this creator, how big and active are they, and can I act on them right now. Anything less and you are back to opening profiles one by one to fill in the gaps.
Why the official developer API does not cover this
The official TikTok developer platform is genuinely good at what it targets: letting users log in with TikTok, letting apps post content, and returning basic profile data for a user who has authorized your app. What it does not do is let you query creators you do not have a login relationship with. There is no official endpoint that returns the recruitable creators in a country, or tells you whether a given creator is eligible for an agency invitation. That is not a permission you are missing. The LIVE recruiting side of TikTok simply has no public developer surface, so everyone who has this data collected it themselves.
Build the pipeline or consume one
That leaves two honest options. The first is to build the collection yourself: servers that watch creators at scale, resolve profiles, verify eligibility, and store the results in a database you can query. It works, and a few large operations do exactly this, but it becomes a full engineering job. Pages change, collection breaks quietly, and stale creator data is worse than none because your team acts on it as if it were true.
The second option is to consume a REST API from a provider that already runs that pipeline. You send a key in a header, you get JSON back, and someone else carries the operational pain of keeping the data fresh. For a team whose real business is signing and managing creators, this is usually the better trade, because your edge is what you do with the data, not the plumbing that fetches it.
What a request looks like
A creator API should take minutes to wire up. As a concrete example, this is a full request for the freshest recruitable creators in a single market:
curl "https://rngrow.com/api/v1/creators?country=RO&limit=100" \
-H "X-API-Key: rng_live_YOUR_KEY"The response is a page of creators with usernames, follower counts, viewer counts and the exact time each one was last verified, plus a cursor for the next page. When you already have a specific username and want a fresh look, a resolve call returns that single creator's current profile and live status on demand. If you only need totals, a stats call returns the counts per country without pulling every row. Together those cover the common builds: syncing verified leads into a CRM on a schedule, checking one handle the moment a recruiter finds it, and alerting the team when a high-follower creator becomes available.
How to judge a provider
Not every creator API is worth integrating. A few questions separate the serious ones from a list of usernames dressed up as a product.
- Is every record timestamped? A response that tells you when each creator was last checked is being honest about freshness. One with no timestamps is asking for blind trust, and creator data goes stale fast.
- Is eligibility actually verified? Returning creators who can be invited requires a real verification step. Without it you get noise, and your team wastes outreach on people who are already signed elsewhere.
- Is there proper pagination and rate limiting? Cursor based pagination and clear rate limit headers are the sign of an API built to be integrated at volume rather than demoed once.
- Does the data match a country you actually work? Coverage that is broad but shallow is a trap. You want depth in the markets you recruit in.
We built the RnG API to pass exactly these tests, because our own dashboard runs on the same pipeline: creators verified continuously per country, with timestamps on every row, a real-time lookup for single handles, and cursor pagination throughout. Access is included with the Radar plan, and there is a typed SDK on npm if you work in JavaScript or TypeScript.
The takeaway
There is no official TikTok Creator API for recruiting data, and there will not be one soon. Your real choice is between building a collection pipeline you then maintain forever, or renting the output of one that already exists and holds itself to the freshness and verification standards above. For most agencies the answer is simple: spend your time on creators, not on the code that fetches them, and pick an API that gives you profiles and availability you can trust the moment you read them.