Threads API

Threads Profile API

Fetch a Threads user's public profile (bio, follower count, verification, profile picture) by username.

POST/v1/run/threads.profile
Uptime
100.00%
30d · 5 calls
Requests
5
30d · weekly, last 12 wks
Response
2.1s
median · 30d

Provider network

Providers ranked by traffic

Try it

Make your first request

Open in
Get a free key
Sample response
Free runs return only the first 3 results. Fund a key to get the full response.
{
  "data": {
    "biography": "A short example description of this item.",
    "followerCount": 12500,
    "fullName": "Alex Rivera",
    "id": "a1b2c3d4",
    "isPrivate": false,
    "isVerified": true,
    "profilePicUrl": "https://example.com/page",
    "username": "alex_rivera"
  },
  "found": true
}
Response interface
interface ThreadsProfileResponse {
  data: {
    biography: string;
    followerCount: number;
    fullName: string;
    id: string;
    isPrivate: boolean;
    isVerified: boolean;
    profilePicUrl: string;
    username: string;
  } | null;
  found: boolean;
}

Full parameter and response reference - every field, type, and example for this endpoint.

Reference

Request, response, and price

Last verified 2026-09-16 · uptime and latency measured over 30d
POST /v1/run/threads.profile
curl -X POST https://api.getanyapi.com/v1/run/threads.profile \
  -H "Authorization: Bearer $ANYAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"username":"zuck"}'
FieldTypeExample value
Request body
usernamestring"zuck"The Threads username to look up, without the @ prefix (e.g. zuck).
Response
dataobject
data.biographystringPopulated whenever the provider has data for the entity.
data.followerCountinteger
data.fullNamestringPopulated whenever the provider has data for the entity.
data.idstringPopulated whenever the provider has data for the entity.
data.isPrivateboolean
data.isVerifiedboolean
data.profilePicUrlstringPopulated whenever the provider has data for the entity.
data.usernamestringPopulated whenever the provider has data for the entity.
foundboolean
Price
Price per requestUSD$0.0012
Price /1k reqUSD$1.20

FAQ

About the Threads Profile API

The AnyAPI Threads Profile API returns Threads profile data as normalized JSON from one POST call to /v1/run/threads.profile. Fetch a Threads user's public profile (bio, follower count, verification, profile picture) by username. AnyAPI routes each request across 2 sources and falls back automatically when one fails. It costs from $1.20 per 1,000 requests, in US dollars with no subscription and no monthly minimum. Over the last 30 days, 100.0% of Threads profile calls through AnyAPI succeeded, with a median response time of 2.1 seconds across 5 measured calls.

It costs from $1.20 per 1,000 requests, in US dollars with no subscription and no monthly minimum. You fund one USD wallet, each call draws it down, and a failed request costs $0.

Fetch a Threads user's public profile (bio, follower count, verification, profile picture) by username. The response is normalized JSON with the same envelope every AnyAPI endpoint returns, so parsing a second endpoint is a change of URL and nothing else.

Over the last 30 days, 100.0% of Threads profile calls through AnyAPI succeeded, with a median response time of 2.1 seconds across 5 measured calls. These are AnyAPI's own measurements of traffic through the gateway, recomputed continuously, not a published service-level target.