Threads Posts Scraper
Pricing
from $4.00 / 1,000 results
Threads Posts Scraper
Scrape posts from any public Threads profile. Get full text, media URLs, engagement counts, and author info. No login required.
Pricing
from $4.00 / 1,000 results
Rating
0.0
(0)
Developer
Andrew
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
4 days ago
Last modified
Categories
Share
Extract posts from any public Threads profile. Get full text, media URLs, engagement counts, and author details. No login required.
What you get
One row per post from the user's Threads timeline:
postId,code,url— direct link to the post on threads.nettext— full post captionpublishedAt— ISO timestamplikeCount,replyCount,repostCount,quoteCount,viewsCount— full engagementisQuotePost,hasMedia,mediaUrls,mediaType(image, video, carousel, text)authorUsername,authorDisplayName,authorVerified,authorProfilePicscrapedAt
Plus a separate profile record (in the Key-value store) for the queried account:
username,userId,displayName,bio,verifiedfollowerCount,profilePicUrl,externalLink,isPrivate
Use cases
- Content monitoring — track a creator's or brand's Threads activity
- Competitor analysis — measure posting cadence and engagement
- Lead generation — pull profile data and external link from public creator accounts
- LLM / RAG ingestion — clean post text + author metadata for AI pipelines
- Audience research — see which posts drive the most likes, replies, and reposts
How to use
- Enter the Username (with or without
@) — for examplezuckor@zuck - Set Max Items — default 50, or 0 for unlimited
- Run the actor — posts appear in the Dataset tab
- Open the Key-value store tab to find the
PROFILErecord (profile metadata) - To check whether more pages exist, look at
NEXT_PAGE_IDin the Key-value store
After the run finishes, open the Key-value store tab → copy the
NEXT_PAGE_IDvalue → paste it into Page ID on your next run. IfNEXT_PAGE_IDisnull, you've fetched everything.
Output format
Post row:
{"postId": "3141592653589793238","code": "C7abcXYZ","url": "https://www.threads.net/@zuck/post/C7abcXYZ","text": "Just shipped a new feature on Threads","publishedAt": "2026-05-20T14:30:12.000Z","likeCount": 12345,"replyCount": 678,"repostCount": 200,"quoteCount": 45,"viewsCount": 250000,"isQuotePost": false,"hasMedia": true,"mediaUrls": ["https://scontent.cdninstagram.com/..."],"mediaType": "image","authorUsername": "zuck","authorDisplayName": "Mark Zuckerberg","authorVerified": true,"authorProfilePic": "https://scontent.cdninstagram.com/...","scrapedAt": "2026-05-27T10:00:00.000Z"}
Profile record (Key-value store PROFILE):
{"username": "zuck","userId": "314216","displayName": "Mark Zuckerberg","bio": "...","verified": true,"followerCount": 15000000,"profilePicUrl": "https://scontent.cdninstagram.com/...","externalLink": "https://meta.com","isPrivate": false}