TikTok Shop Creators Search
Pricing
from $10.00 / 1,000 creators
Go to Apify Store
TikTok Shop Creators Search
Find high performing TikTok Shop creators by GMV, category, sales performance and more.
TikTok Shop Creators Search
Pricing
from $10.00 / 1,000 creators
Find high performing TikTok Shop creators by GMV, category, sales performance and more.
You can access the TikTok Shop Creators Search programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, youโll need an Apify account and your API token, found in API & Integrations in Apify Console.
1import { ApifyClient } from 'apify-client';2
3// Initialize the ApifyClient with your Apify API token4// Replace the '<YOUR_API_TOKEN>' with your token5const client = new ApifyClient({6 token: '<YOUR_API_TOKEN>',7});8
9// Prepare Actor input10const input = {11 "category": [12 "all"13 ],14 "gmv": [15 "all"16 ],17 "unitsSold": [18 "any"19 ],20 "followersAge": [21 "all"22 ],23 "commission": "all",24 "content": "any",25 "postRate": "any",26 "agencyStatus": "any",27 "isFastGrowing": "any",28 "language": [29 "all"30 ],31 "creatorCount": 10,32 "region": "US"33};34
35// Run the Actor and wait for it to finish36const run = await client.actor("lemur/tiktok-shop-creators-search").call(input);37
38// Fetch and print Actor results from the run's dataset (if any)39console.log('Results from dataset');40console.log(`๐พ Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);41const { items } = await client.dataset(run.defaultDatasetId).listItems();42items.forEach((item) => {43 console.dir(item);44});45
46// ๐ Want to learn more ๐? Go to โ https://docs.apify.com/api/client/js/docsThe Apify API client for JavaScript is the official library that allows you to use TikTok Shop Creators Search API in JavaScript or TypeScript, providing convenience functions and automatic retries on errors.
Install the apify-client
$npm install apify-clientOther API clients include: