TikTok Creator Scraper avatar

TikTok Creator Scraper

Pricing

from $4.90 / 1,000 videos

Go to Apify Store
TikTok Creator Scraper

TikTok Creator Scraper

TikTok creator-intelligence API: video performance signals (TikTok Score, Recommend Type), audience metrics, audio and SEO metadata, monetization indicators. JSON feed for creator-marketing CRMs and brand-sponsorship targeting.

Pricing

from $4.90 / 1,000 videos

Rating

5.0

(2)

Developer

AgentX

AgentX

Maintained by Community

Actor stats

2

Bookmarked

2

Total users

1

Monthly active users

an hour ago

Last modified

Share

TikTok Creator Scraper - Creator Profile Extraction & Video Analytics API

Extract 50+ data fields per video from any TikTok creator profile β€” including hidden SEO metadata, engagement forensics, algorithm recommendation types, nested comment trees, and audio metadata. This API delivers structured creator intelligence with follower metrics, video history, quality scores (VQScore), content permissions, and commercial music licensing data for influencer vetting, competitor analysis, and creator economy research pipelines.

TikTok 50+ Fields SEO Data


Why Choose This API

50+ Field TikTok Creator Intelligence with Hidden SEO Data

πŸ” Hidden SEO Metadata Extraction Extract TikTok-generated SEO titles, descriptions, tags, and keywords invisible to manual inspection β€” revealing how TikTok's algorithm categorizes and distributes content.

πŸ“ˆ Algorithm Intelligence Decode VQScore (video quality score), recommendation types (for_you, gaming, cross_promotion, effect_related), and platform-assigned categories for content strategy reverse-engineering.

πŸ’¬ Nested Comment Intelligence Complete comment trees with parent-child reply chains, engagement metrics, pinned/liked markers, and sentiment data for audience analysis.

🎡 Audio & Music Metadata Music ID, title, author, duration, copyright status, and commercial permissions with optional MP3 download for content licensing research.


Quick Start Guide

How to Extract TikTok Creator Data in 3 Steps

Step 1: Configure Parameters

Enter a TikTok profile URL or @username, select content type, and set video/comment limits.

Step 2: Run the Actor

Click "Start" to begin profile extraction. Videos are processed newest-first with progress tracking.

Step 3: Access Structured Data

Download JSON dataset with 50+ fields per video including SEO data, comments, and audio metadata.

Example Input

{
"tiktok_url": "https://www.tiktok.com/@mrbeast",
"content_type": "Videos",
"max_videos": 30,
"max_comments": 50,
"download_music": false
}

Input Parameters

ParameterTypeRequiredDescription
πŸ”— TikTok URLStringYesProfile URL or @username
πŸ“Ή Content TypeStringYesTab to extract: Videos, Reposts, or Liked
πŸ“Š Max VideosIntegerYesMaximum videos to extract (newest first)
πŸ’¬ Max CommentsIntegerYesMax comments per video including replies (0 to skip)
🎡 Download MusicBooleanYesDownload original music files (MP3)

Output Data Schema

Each extracted video returns comprehensive creator and content intelligence:

Output Fields

FieldTypeDescription
idStringUnique TikTok video identifier
urlStringTikTok video page URL
created_atStringISO 8601 creation timestamp
descriptionStringVideo caption/description
quality_scoreStringTikTok internal VQScore
play_countIntegerNumber of video plays
like_countIntegerNumber of likes
comment_countIntegerNumber of comments
share_countIntegerNumber of shares
collect_countIntegerNumber of saves/collects
categoryStringPlatform-assigned video category
recommend_typeStringAlgorithm recommendation channel
hashtagsArrayHashtags used
seo_titleStringTikTok-generated SEO title
seo_descriptionStringTikTok-generated SEO description
seo_tagsArrayTikTok-assigned SEO tags
seo_keywordsArrayTikTok-assigned SEO keywords
author_nameStringCreator username
author_followersIntegerTotal follower count
author_verifiedBooleanVerification status
music_titleStringMusic track title
music_copyrightedBooleanCopyright status
music_commerceBooleanCommercial use permission
commentsArrayNested comment threads

Example Output

{
"processor": "https://apify.com/agentx/tiktok-creator-scraper?fpr=aiagentapi",
"processed_at": "2025-01-15T08:12:31+00:00",
"id": "7554428159052008717",
"url": "https://www.tiktok.com/@mrbeastlab/video/7554428159052008717",
"description": "πŸ”₯ The all-new animated series premieres October 26.",
"quality_score": "64.65",
"play_count": 560500,
"like_count": 25100,
"comment_count": 907,
"share_count": 887,
"category": "other",
"recommend_type": "effect_related",
"hashtags": ["mrbeastlabstoyspartner"],
"seo_title": "MrBeast Labs Animated Series Premieres Soon!",
"author_name": "mrbeastlab",
"author_verified": true,
"author_followers": 173600,
"comments": [
{
"id": "7558561176227447565",
"name": "goobygio",
"text": "That voice actor sounds EXACTLY like Mr. Beast",
"like_count": 181,
"reply_count": 5
}
]
}

Integration Examples

Python Integration Example

from apify_client import ApifyClient
client = ApifyClient("YOUR_API_TOKEN")
run_input = {
"tiktok_url": "https://www.tiktok.com/@mrbeast",
"content_type": "Videos",
"max_videos": 30,
"max_comments": 50,
"download_music": False
}
run = client.actor("p5WWQg8bwnUMT9SJw").call(run_input=run_input)
dataset_items = client.dataset(run["defaultDatasetId"]).list_items().items
for video in dataset_items:
print(f"{video['description'][:50]} | {video['play_count']} plays | VQ: {video['quality_score']}")

JavaScript/Node.js Integration

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: 'YOUR_API_TOKEN' });
const input = {
tiktok_url: 'https://www.tiktok.com/@mrbeast',
content_type: 'Videos',
max_videos: 30,
max_comments: 50,
download_music: false
};
const run = await client.actor("p5WWQg8bwnUMT9SJw").call(input);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach(video => {
console.log(`${video.description.substring(0, 50)} | ${video.play_count} plays`);
});

Actor ID for Platform Integration

p5WWQg8bwnUMT9SJw

Ⓜ️ Make.com Setup:

  1. Login to Make.com (Get 1000 Free Credits)
  2. Add module "Run an Actor"
  3. Turn 'Map' on - right side of the 'Actor*'
  4. Paste Actor ID - from above
  5. Click the '⟳ Refresh' - left side of Map
  6. Input JSON* - Modify the parameters as needed
  7. Set "Run synchronously" to YES
  8. Add module "Get Dataset Items" - receive the result
  9. In Dataset ID* select defaultDatasetId

🎱 N8N.io Setup:

  1. Add 'Run an Actor and get dataset' - from the apify node
  2. Actor β†’ By ID β†’ Paste Actor ID - from above
  3. Input JSON - Modify the parameters as needed

JSON-LD Metadata

{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "TikTok Creator Scraper",
"description": "TikTok creator profile extraction API with 50+ fields including hidden SEO metadata, engagement analytics, and nested comment intelligence",
"applicationCategory": "Developer Tools",
"operatingSystem": "Cloud",
"url": "https://apify.com/agentx/tiktok-creator-scraper?fpr=aiagentapi",
"dateModified": "2026-04-21",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
}
}

Pricing & Cost Calculator

Transparent Pay-Per-Use Model

Event TypePriceDescription
Actor Start$0.02One-time charge per Actor run
Video$0.0055Charged per video extracted with full metadata and SEO fields
Comment$0.0015Charged per comment extracted including replies

Cost Examples

30 Videos, No Comments:

  • Videos: 30 Γ— $0.0055 = $0.165
  • Actor Start: $0.02
  • Total: ~$0.19

30 Videos with 50 Comments Each:

  • Videos: 30 Γ— $0.0055 = $0.165
  • Comments: 1,500 Γ— $0.0015 = $2.25
  • Actor Start: $0.02
  • Total: ~$2.44

100 Videos with 50 Comments Each:

  • Videos: 100 Γ— $0.0055 = $0.55
  • Comments: 5,000 Γ— $0.0015 = $7.50
  • Actor Start: $0.02
  • Total: ~$8.07

Use Cases & Applications

Influencer Marketing & Vetting

Creator Due Diligence Deep-profile creator candidates β€” verify follower counts, engagement rates, advertiser status, and commercial music permissions before partnership investment.

Campaign Performance Benchmarking Track engagement metrics across creator portfolios to establish performance baselines for B2B influencer campaigns.

Competitive Intelligence

Content Strategy Reverse-Engineering Extract competitor video history, SEO tags, and recommendation types to analyze their TikTok algorithm distribution strategy.

Brand Safety Audits Check advertiser flags, content categories, and comment sentiment before brand association with creators.

Creator Economy Research

Market Sizing & Trend Detection Map creator permission settings, content categories, and audience engagement patterns for market sizing and emerging trend analysis.

Algorithm Intelligence Monitor recommend_type and category fields across viral creators for early signal detection of platform distribution shifts.


FAQ

What content types can be extracted?

Three tabs from any public TikTok profile: Videos (original posts), Reposts (reshared content), and Liked (favorited videos, if public).

What are the hidden SEO fields?

seo_title, seo_description, seo_tags, and seo_keywords are metadata generated by TikTok's algorithm β€” invisible on the platform but revealing how TikTok categorizes and distributes content.

Are nested comments included?

Yes β€” full parent-child reply structures with engagement metrics, pinned/liked markers, and visibility status. Set max_comments: 0 to skip.

Can I download actual video files?

This actor focuses on metadata and intelligence. For video downloads, use All Video Scraper.

How does pricing work?

There is no per-record extraction fee. You only pay for Apify platform compute resources such as memory, execution time, and storage consumed during the run.


SEO Keywords & Search Terms

Primary Keywords

tiktok creator scraper API, tiktok profile extraction, tiktok influencer data API, tiktok creator analytics, tiktok SEO metadata extractor, tiktok engagement intelligence

Long-Tail Keywords

extract tiktok creator profile 50 fields SEO metadata API, tiktok influencer vetting pipeline structured JSON, tiktok algorithm recommendation type extraction

Industry Terms

creator intelligence, influencer vetting, TikTok algorithm analysis, creator economy research, content strategy extraction, engagement forensics


Trust & Certifications

  • βœ… Enterprise Ready - Processing creator intelligence at scale
  • βœ… GDPR Compliant - EU data protection standards
  • βœ… 50+ Fields - Including hidden SEO metadata
  • βœ… Regular Updates - Continuous maintenance for platform changes

Data Rights & Usage

All data is extracted from publicly available TikTok profiles. Users are responsible for ensuring their use of extracted data complies with applicable laws and TikTok's Terms of Service.

Privacy Compliance

  • GDPR: Compliant with EU General Data Protection Regulation. No personal data is stored beyond the extraction session.
  • CCPA: Compliant with California Consumer Privacy Act requirements.

Platform Terms of Service

Users must review and comply with TikTok's Terms of Service and Developer Terms regarding data extraction and usage.

Enterprise Support

For enterprise licensing, custom integrations, or compliance inquiries:


Jobs & Hiring

LinkedIn

Reddit

Telegram

Instagram

X / Twitter

TikTok

Video & Content

YouTube

Real Estate

Maps & Local


Support & Community


Last Updated: April 21, 2026