Threads Profile Scraper - Public Account Data avatar

Threads Profile Scraper - Public Account Data

Pricing

from $3.40 / 1,000 profiles

Go to Apify Store
Threads Profile Scraper - Public Account Data

Threads Profile Scraper - Public Account Data

Get any public Threads account by username: bio, follower count, verification, avatar and topic tags. No Threads login or account needed.

Pricing

from $3.40 / 1,000 profiles

Rating

0.0

(0)

Developer

The Netaji

The Netaji

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

7 days ago

Last modified

Share

Threads Profile Scraper

The Actor retrieves one public Threads account by username and returns its profile record: display name, bio, follower count, verification, avatar, and the topic tags Threads shows on the account. It accepts a bare username, an @handle, or a full profile URL.

Accepted input

FieldTypeDefaultDescription
usernamestringrequiredA Threads username, @handle, or full profile URL, e.g. instagram, @instagram, or https://www.threads.com/@instagram.
{
"username": "zuck"
}

Response fields

FieldContents
user_idThreads' own numeric ID for the account, as a string
usernameThe account's Threads username
requested_usernameThe value this run asked for, echoed back
full_nameThe account's display name
biographyThe account's bio, plain text
follower_countFollowers, read at the moment of the request
is_verifiedWhether the account carries Threads' verification mark
is_privateWhether the account is private
profile_pic_urlThe account's avatar
hd_profile_pic_versionsThe avatar at larger sizes, each an object with url, width and height
bio_linksLinks in the account's bio
profile_tagsThe topic tags Threads shows on the profile, republished whole
rawThe complete profile record exactly as Threads' own internal API returns it
{
"user_id": "63055343223",
"username": "zuck",
"full_name": "Mark Zuckerberg",
"biography": "Mostly superintelligence and MMA takes",
"follower_count": 5723633,
"is_verified": true,
"is_private": false
}

The raw field

Threads publishes no documented schema for this data — the fields above are the ones consistently present and worth a column of their own, pulled from a record that, measured live, carries several dozen fields, some of them internal (gating, transparency_label, podcast metadata that is null on non-podcast accounts). Everything not listed in the table above is still in the row, inside raw, exactly as Threads returned it. A field missing from the table today is not missing from the data.

Behaviour on an account that cannot be resolved

A username, handle, or URL that does not resolve to a real account finishes the run with an empty dataset rather than failing it — this covers both a deleted account and one that was never a Threads account at all. The distinction is not exposed, since Threads itself does not expose it consistently: what Threads answers for "never existed" and for "deleted" is not the same response every time, and this Actor treats both as one outcome rather than guessing between them.

Frequently asked questions

Why is follower_count slightly different if I run this twice? It is a live counter, read at request time. Two runs minutes apart on a fast-growing account will disagree, and that is drift rather than a fault.

What is the difference between biography and the bio shown in raw? biography is the plain-text bio. Threads also carries a richer, structured version of the same text internally (with mention and link fragments broken out); that structured form is available in raw for a caller who needs the fragments rather than the flat string.

Why is profile_tags sometimes null? Not every account has topic tags attached. null means the account carries none, not that the field failed to load.

Can I look up several accounts in one run? Each run takes one username. For a list, run the Actor once per username, or drive it from a task with different input each time.

Threads Posts Scraper exports an account's public posts by user_id — the exact value this Actor returns. Threads Post Scraper fetches one post by its link. Threads Search Scraper finds public posts by keyword.