Threads Scraper Lite avatar
Threads Scraper Lite

Pricing

from $7.00 / 1,000 results

Go to Apify Store
Threads Scraper Lite

Threads Scraper Lite

Developed by

Sachin Kumar Yadav

Sachin Kumar Yadav

Maintained by Community

Threads Scraper Lite: scrape Instagram Threads profiles, bio links, user posts, and user search. Fast Apify Actor with batching and clean JSON output.

0.0 (0)

Pricing

from $7.00 / 1,000 results

0

2

2

Last modified

4 days ago

Threads Scraper (Apify) ⚡

High-performance Threads Scraper to collect user profiles (with bio links), user posts, and user search results. Built as an Apify Actor for reliability, batching, and scale.

Target keyword: Threads Scraper

Related keywords: Instagram Threads scraper, Threads user scraper, Threads posts scraper, Threads API alternative, Threads data extraction, social media intelligence, Threads analytics, Threads crawler.


Table of Contents 📚

  • [Features](#features-)
  • [How it works](#how-it-works-)
  • [Quick start](#quick-start-)
  • [Input configuration](#input-configuration-)
  • [Example inputs](#example-inputs-)
  • [Example outputs](#example-outputs-)
  • [Best practices](#best-practices-)
  • [FAQ](#faq-)
  • [Changelog](#changelog-)

Features ✨

ModuleWhat you getInput switches
UsersProfile details with bio links by usernameusers_enabled, usernames, fetch_detail_with_biolink
User postsRecent posts for each usernameusers_enabled, fetch_posts, posts_limit
User searchFind users by querysearch_enabled, search_queries, search_limit

This Threads Scraper is ideal for brand monitoring, creator research, social listening, competitive analysis, and content curation.


How it works 🧠

  • Resilient requests with lightweight retries and API key rotation.
  • Buffered writes to the Apify dataset for performance.
  • Modular inputs so you can enable only what you need.

Quick start ⚡

  1. In your Actor run, provide input JSON using the schema below.
  2. Start the Actor. Results are written to the default dataset.

Input configuration ⚙️

GroupKeyTypeDefaultDescription
Usersusers_enabledbooleanfalseEnable fetching users by username
usernamesarray[string]List of usernames (without @)
fetch_detail_with_biolinkbooleantrueFetch profile detail with bio links
fetch_postsbooleantrueFetch posts for each username
posts_limitinteger0Max posts per user to push (0 = all returned)
Searchsearch_enabledbooleanfalseEnable user search by query
search_queriesarray[string]List of queries
search_limitinteger0Max results per query to push (0 = all returned)

Example inputs 📥

  • Users: details + posts
{
"users_enabled": true,
"usernames": ["kyliejenner", "zuck"],
"fetch_detail_with_biolink": true,
"fetch_posts": true,
"posts_limit": 20
}
  • Search users by query
{
"search_enabled": true,
"search_queries": ["kylie", "meta"],
"search_limit": 25
}

Example outputs 📤

  • User detail with bio link (source: "users", subtype: "detail_with_biolink")
{
"source": "users",
"subtype": "detail_with_biolink",
"username": "kyliejenner",
"status": "ok",
"request_id": "...",
"data": { "user": { /* profile fields */ } }
}
  • User posts (source: "users", subtype: "posts")
{
"source": "users",
"subtype": "posts",
"username": "kyliejenner",
"node": { /* thread/post node as returned */ }
}
  • User search (source: "search", subtype: "users_search")
{
"source": "search",
"subtype": "users_search",
"query": "kylie",
"node": { /* user node from search */ }
}
  • Summary (final item)
{
"success": true,
"pages_fetched": 3,
"total_pushed": 421,
"fetched_at": "2025-01-01T12:34:56.000Z",
"resultsMeta": { "groups_processed": ["users", "search"] }
}

Best practices 🧩

  • Start small: limit posts/results while testing (posts_limit, search_limit).

FAQ ❓

  • Is login required?
    • No. The Actor uses public data.
  • Where do results go?
    • The default Apify dataset for the run.

Changelog 📦

  • Initial release: Users detail with bio link, User posts, and Users search.