Tiktok Followers Count Scraper avatar

Tiktok Followers Count Scraper

Pricing

from $3.00 / 1,000 results

Go to Apify Store
Tiktok Followers Count Scraper

Tiktok Followers Count Scraper

TikTok follower count scraper that pulls followers, following, likes, and video stats for any public username, so you don't have to look them up by hand.

Pricing

from $3.00 / 1,000 results

Rating

0.0

(0)

Developer

Kawsar

Kawsar

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

3 days ago

Last modified

Share

Pull follower counts, following totals, likes, video counts, and account creation dates for any public TikTok username. Pass in one handle or a list and you get a JSON record back for each one.

What it does

Give it TikTok usernames, get back the stats from their public pages. Single lookups and batch runs both work.

Input

FieldTypeDescriptionDefault
tiktokHandleStringA single TikTok username. The @ is optional.
tiktokHandlesArrayMultiple usernames for batch lookups.
maxItemsIntegerMaximum handles to process per run.100
requestTimeoutSecsIntegerPer-request timeout in seconds.30

At least one of tiktokHandle or tiktokHandles is required.

Single handle:

{
"tiktokHandle": "kawsarlog"
}

Batch:

{
"tiktokHandles": ["kawsarlog", "charlidamelio", "mrbeast"]
}

Output

One record per handle.

FieldTypeDescription
tiktokHandleStringThe TikTok username
displayNameStringAccount display name
followersIntegerFollower count
followingIntegerAccounts followed
likesIntegerTotal likes
videosIntegerVideos posted
createdAtStringAccount creation date (ISO 8601)
verifiedBooleanWhether the account is verified
scrapedAtStringWhen the data was collected
errorStringError message, or null if successful

Example output:

{
"tiktokHandle": "kawsarlog",
"displayName": "Kawsar",
"followers": 253,
"following": 7,
"likes": 944,
"videos": 78,
"createdAt": "2018-03-21T00:00:00.000Z",
"verified": false,
"scrapedAt": "2024-01-01T12:00:00+00:00",
"error": null
}

What people use it for

Checking follower counts before influencer deals. Tracking how accounts grow over time. Pulling stats for a big list of creators without going through each profile by hand.

Notes

Public profiles only. Private or deleted accounts return an error record rather than stopping the whole run, so one bad handle won't affect the rest.