Threads Scraper Pro avatar
Threads Scraper Pro

Pricing

from $8.00 / 1,000 results

Go to Apify Store
Threads Scraper Pro

Threads Scraper Pro

Developed by

Sachin Kumar Yadav

Sachin Kumar Yadav

Maintained by Community

Collect Threads profiles, posts, replies, media, followers, following, and search results with Threads Scraper Pro. Clean JSON to your Apify dataset.

0.0 (0)

Pricing

from $8.00 / 1,000 results

0

3

3

Last modified

2 days ago

Threads Scraper Pro ⚡

Powerful Threads Scraper Pro to collect user profiles, posts (threads), replies, media, reposts, followers, following, thread details/activity/comments, and search results for posts and profiles. Built as an Apify Actor for reliability and scale.


Why use Threads Scraper Pro? 🚀

  • Wide coverage: Users, Threads, Thread Details, Activity, Comments, Search Posts, Search Profiles
  • Resilient: Retries, backoff, and key rotation built-in
  • Clean JSON: Outputs structured records to the Apify dataset

Target keyword: Threads Scraper Pro

Related keywords: Threads scraper, Threads data, Threads API alternative, Threads analytics, Threads search, Threads user data, Meta Threads Profile Scraper, Threads User Profile Scraper, Threads User Posts Scraper, Threads Phone Number Scraper, Threads Email Scraper, Threads User Following Scraper, Threads User Followers Scraper, Threads Video Downloader, Search Threads By Keywords, Threads comments scraper, Threads replies scraper, social media data extraction.


Table of Contents 📚


Features ✨

ModuleWhat you getInput switches
UsersDetails, threads, replies, media, repostsuser_enabled, usernames, user_fetch_*
UsersFollowers, followinguser_fetch_followers, user_fetch_following
ThreadsThread details, activity, commentsthread_enabled, thread_codes, thread_fetch_*
SearchSearch posts and profilessearch_enabled, search_query, search_*

How it works 🧠

  • Each call is retried with small backoffs and provider key rotation.
  • Results are pushed as JSON items to the default dataset.

Quick start 🏁

  1. Configure inputs in the Apify UI or via JSON.
  2. Run the actor and fetch results from the run’s dataset.

Input configuration ⚙️

GroupKeyTypeDefaultDescription
Usersuser_enabledbooleanfalseEnable Users module
usernamesarray[string]Threads usernames (without @)
user_fetch_detailsbooleantrueFetch /user-details
user_fetch_threadsbooleantrueFetch /user-threads
user_fetch_repliesbooleanfalseFetch /user-replies
user_fetch_mediabooleanfalseFetch /user-media
user_fetch_repostsbooleanfalseFetch /user-reposts
user_fetch_followersbooleanfalseFetch /user-followers
user_fetch_followingbooleanfalseFetch /user-following
Threadsthread_enabledbooleanfalseEnable Threads module
thread_codesarray[string]Thread codes to fetch
thread_fetch_detailsbooleantrueFetch /thread-details
thread_fetch_activitybooleanfalseFetch /thread-activity
thread_fetch_commentsbooleanfalseFetch /thread-comments
Searchsearch_enabledbooleanfalseEnable Search module
search_querystringQuery for posts and profiles
search_sortstringtopSort for posts (e.g. top, latest)
search_fromstringFilter from specific source (optional)
search_beforestringUpper date bound YYYY-MM-DD (optional)
search_afterstringLower date bound YYYY-MM-DD (optional)
search_profilesbooleanfalseAlso call /search-profiles

Example inputs 📥

1) Users: details + threads

{
"user_enabled": true,
"usernames": ["kyliejenner"],
"user_fetch_details": true,
"user_fetch_threads": true
}

2) Threads: details + comments

{
"thread_enabled": true,
"thread_codes": ["DP8XomBDhqt"],
"thread_fetch_details": true,
"thread_fetch_comments": true
}

3) Search: posts + profiles

{
"search_enabled": true,
"search_query": "trump",
"search_sort": "top",
"search_profiles": true
}

Example outputs 📤

Results are written to the default dataset as structured JSON.

  • Users (details)
{
"source": "user",
"subtype": "details",
"username": "kyliejenner",
"params": { "username": "kyliejenner" },
"data": { /* provider response */ }
}
  • Thread (comments)
{
"source": "thread",
"subtype": "comments",
"thread_code": "DP8XomBDhqt",
"params": { "thread_code": "DP8XomBDhqt" },
"data": { /* provider response */ }
}
  • Search (profiles)
{
"source": "search",
"subtype": "profiles",
"search_query": "trump",
"params": { "search_query": "trump" },
"data": { /* provider response */ }
}
  • Summary item at the end
{
"success": true,
"pages_fetched": 3,
"total_pushed": 10,
"fetched_at": "2025-01-01T12:34:56.000Z"
}

Best practices 🧩

  • Start small: Test with one username or one thread code.
  • Keep outputs raw: The actor stores raw JSON for maximum flexibility downstream.

FAQ ❓

  • Is login required?
    • No. This actor works with public data.
  • Where do results go?
    • The default Apify dataset for the run.

Changelog 📦

  • 1.0.0: Initial release of Threads Scraper Pro with Users, Threads, and Search modules.