Threads Scraper — Posts, Profiles & Search avatar

Threads Scraper — Posts, Profiles & Search

Pricing

from $10.00 / 1,000 results

Go to Apify Store
Threads Scraper — Posts, Profiles & Search

Threads Scraper — Posts, Profiles & Search

Scrape Meta Threads public data without login or API keys. Features Profile mode — username, bio, follower/following counts, verified status, profile picture Posts mode — post text, likes, replies, reposts, quotes, media URLs, timestamps, hashtags, mentions Search mode — search Threads by keywords

Pricing

from $10.00 / 1,000 results

Rating

0.0

(0)

Developer

Jamshaid Arif

Jamshaid Arif

Maintained by Community

Actor stats

0

Bookmarked

4

Total users

2

Monthly active users

4 days ago

Last modified

Share

Scrape Meta Threads public data without login or API keys.

Features

  • Profile mode — username, bio, follower/following counts, verified status, profile picture
  • Posts mode — post text, likes, replies, reposts, quotes, media URLs, timestamps, hashtags, mentions
  • Search mode — search Threads by keyword, extract matching posts with engagement data
  • 3 extraction methods — GraphQL interception → embedded JSON → DOM fallback
  • Clean output — deduped text, parsed engagement counts, structured JSON

Input

FieldTypeDescription
modestringposts, profile, or search
usernamesstring[]Usernames to scrape (without @)
searchQuerystringSearch keyword (for search mode)
maxPostsintegerMax posts per user (1–200)
includeProfilebooleanInclude profile in posts mode

Example Input

{
"mode": "posts",
"usernames": ["zuck", "mosseri"],
"maxPosts": 20,
"includeProfile": true
}

Output

Each item in the dataset contains:

{
"type": "post",
"text": "Today we're sharing our new model family...",
"username": "zuck",
"like_count": 7100,
"reply_count": 267,
"repost_count": 509,
"timestamp": "2026-04-08T12:00:00+00:00",
"url": "https://www.threads.net/t/ABC123",
"hashtags": ["AI"],
"mentions": ["meta"],
"media": [{"type": "image", "url": "https://..."}]
}