VOOZH about

URL: https://apify.com/khadinakbar/meta-threads-profile-posts-scraper

⇱ Threads Scraper Β· Apify


πŸ‘ Threads Scraper β€” Profile Posts, Media & Engagement avatar

Threads Scraper β€” Profile Posts, Media & Engagement

Pricing

from $3.00 / 1,000 profile metadata scrapeds

Go to Apify Store

Threads Scraper β€” Profile Posts, Media & Engagement

Scrape Threads profile posts: text, media URLs, likes, replies, reposts, quotes, and timestamps. Bulk usernames, HTTP-only, no login required. MCP-ready.

Pricing

from $3.00 / 1,000 profile metadata scrapeds

Rating

0.0

(0)

Developer

πŸ‘ Khadin Akbar

Khadin Akbar

Maintained by Community

Actor stats

0

Bookmarked

21

Total users

19

Monthly active users

8 days ago

Last modified

Share

Threads Scraper pulls posts from any public Meta Threads profile and returns structured JSON β€” text, media, engagement metrics, and author metadata. HTTP-only, no login required. Bulk usernames supported. MCP-ready for AI agents.

What it does

Input one or more Threads usernames (or profile URLs) and get back structured JSON records for each post:

  • Full post text
  • Like, reply, repost, and quote counts
  • Media URLs (images and videos)
  • Post timestamp (ISO 8601)
  • Canonical post URL
  • Author name, follower count, verified status

Optionally include one profile metadata record per username (bio, external URL, profile picture URL, follower count).

When to use this actor

  • Content analytics β€” audit a competitor's or creator's last N posts on Threads.
  • Influencer research β€” pull engagement rates across multiple profiles at once.
  • Brand monitoring β€” track what an account is posting over time.
  • Social media reporting β€” bulk-export posts to CSV, Google Sheets, or a dashboard.
  • AI agents / Claude / ChatGPT β€” call this as an MCP tool to retrieve Threads posts as structured data during a research task.

Do NOT use for keyword or hashtag search β€” use a search-focused Threads actor for that.

Output data

FieldTypeDescription
typestring"post" or "profile"
usernamestringThreads username
postIdstringUnique post ID
postUrlstringCanonical URL
textstringPost text (null for media-only)
publishedAtISO 8601Post timestamp UTC
likeCountintegerTotal likes
replyCountintegerTotal direct replies
repostCountintegerTotal reposts
quoteCountintegerTotal quote-posts
mediaUrlsstring[]Image/video CDN URLs
isRepostbooleanTrue if this is a repost
authorFullNamestringDisplay name
authorIsVerifiedbooleanVerified badge
authorFollowerCountintegerFollower count at scrape time
biostringProfile bio (type=profile only)
externalUrlstringBio link URL (type=profile only)
profilePicUrlstringProfile picture URL (type=profile only)
scrapedAtISO 8601Scrape timestamp UTC

Pricing

  • $0.00005 per run start (per GB RAM)
  • $0.005 per post scraped
  • $0.003 per profile metadata record (when includeProfileInfo is true)

Typical cost: 1 username Γ— 30 posts = ~$0.15

Pay-Per-Usage (compute + proxy passthrough) also enabled for large-scale runs.

Usage

Basic β€” scrape last 30 posts from one profile

{
"usernames":["zuck"],
"maxPostsPerProfile":30
}

Bulk profiles + no profile metadata

{
"usernames":["zuck","natgeo","nasa"],
"maxPostsPerProfile":50,
"includeProfileInfo":false
}

With custom proxy

{
"usernames":["someusername"],
"maxPostsPerProfile":100,
"proxyConfiguration":{
"useApifyProxy":true,
"apifyProxyGroups":["RESIDENTIAL"]
}
}

API

curl-X POST \
"https://api.apify.com/v2/acts/khadinakbar~meta-threads-profile-posts-scraper/runs?token=YOUR_TOKEN"\
-H"Content-Type: application/json"\
-d'{"usernames":["zuck"],"maxPostsPerProfile":30}'

JavaScript / Node.js

import{ ApifyClient }from'apify-client';
const client =newApifyClient({token:'YOUR_TOKEN'});
const run =await client.actor('khadinakbar/meta-threads-profile-posts-scraper').call({
usernames:['zuck','natgeo'],
maxPostsPerProfile:50,
});
const{ items }=await client.dataset(run.defaultDatasetId).listItems();
console.log(items);

Python

from apify_client import ApifyClient
client = ApifyClient(token='YOUR_TOKEN')
run = client.actor('khadinakbar/meta-threads-profile-posts-scraper').call(run_input={
'usernames':['zuck','natgeo'],
'maxPostsPerProfile':50,
})
for item in client.dataset(run['defaultDatasetId']).iterate_items():
print(item)

How it works

  1. Loads each Threads profile page via HTTP GET (no headless browser).
  2. Parses all embedded <script data-sjs> JSON blobs from the SSR response.
  3. Extracts user metadata and thread_items arrays using a schema-agnostic deep-finder β€” resilient to Threads layout changes.
  4. For requests exceeding the SSR batch (~24 posts), paginates via Threads' internal GraphQL endpoint using LSD and fb_dtsg tokens extracted from the initial page.
  5. Pushes each post as a flat JSON record; emits a PPE charge event per post.

FAQ

Does it need a Threads account or login? No. Only works on public profiles.

What's the max posts per profile? Up to 500. The SSR batch typically includes ~24 posts; additional posts are fetched via GraphQL pagination.

What happens if a profile is private or doesn't exist? The run continues to the next username. A warning is logged. No charge for profiles that return no data.

Will it break when Threads updates its layout? The parser uses key-name traversal rather than fixed JSON paths. Minor layout changes are automatically handled. Major structural changes (rare) may require an actor update.

Can I use my own proxy? Yes β€” set proxyConfiguration.useApifyProxy: false and provide proxyUrls.

Does it scrape replies or hashtag feeds? No. This actor focuses on profile posts. For replies or search, use a dedicated actor.

Related actors

Legal disclaimer

This actor scrapes publicly accessible data from Meta Threads in the same way a web browser would. It does not bypass authentication, access private content, or circumvent paywalls. Users are responsible for ensuring their usage complies with Meta's Terms of Service and applicable laws in their jurisdiction. Web scraping of publicly available data is generally permitted for legitimate research, analytics, and competitive intelligence purposes under most jurisdictions, but this varies by location. Apify and the actor developer assume no liability for misuse.

You might also like

Threads Posts Scraper

seemuapps/threads-posts-scraper

Scrape posts from any public Threads profile. Get full text, media URLs, engagement counts, and author info. No login required.

Threads Scraper - Posts, Profiles & Search

botflowtech/threads-meta-scraper

Scrape Meta Threads profiles, posts, and search results without login. Extract text, likes, replies, reposts, media URLs, and engagement data. No API key needed.

Threads Post Scraper Goat

goat255/threads-post-scraper

Bulk Instagram Threads (Meta) post extraction. Text, media, likes, replies, reposts, quotes, timestamps. No login, no API key.

🧡 Threads User Posts Scraper

api-empire/threads-user-posts-scraper

🧡 Threads User Posts Scraper pulls public posts from Meta Threads profilesβ€”text, media URLs, timestamps, hashtags, mentions, links, and engagement (likes, replies, reposts). πŸ“₯ Export CSV/JSON. πŸ” Ideal for social listening, competitor intel, and research. πŸš€

Threads Scraper

automation-lab/threads-scraper

Scrape Meta Threads posts, profiles, and search results. No login needed. Extract text, likes, reply counts, reposts, media, and user data.

πŸ‘ User avatar

Stas Persiianenko

855

4.7

Threads Scraper β€” Posts, Profiles & Search

moving_beacon-owner1/my-actor-88

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

4

Threads Scraper - Scrape threads.net Posts, No Login

logiover/threads-scraper

No-login Threads scraper & unofficial API alternative. Export public Threads posts, replies, profiles & engagement to CSV, JSON or Excel.

🧡Threads Search Post Scraper

simpleapi/threads-search-post-scraper

🧡Threads Search Post Scraper collects Threads posts and reply threads via search or URLs, including author, timestamp, likes, replies, reposts, quotes, media, hashtags & links. πŸ”Ž Perfect for social listening, competitor analysis & research. ⚑ Fast, accurate, scalable.

Threads Profile Media Downloader

igview-owner/threads-user-media-scraper

Extract public Threads user posts in bulk, including videos, images, captions and engagement stats. Perfect for content research, influencer monitoring, brand tracking, and social media analytics. No login required, just provide a Threads username.

πŸ‘ User avatar

Sachin Kumar Yadav

132