Threads Profile API
Fetch a Threads user's public profile (bio, follower count, verification, profile picture) by username.
Provider network
Providers ranked by traffic
Try it
Make your first request
{
"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
}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 30dcurl -X POST https://api.getanyapi.com/v1/run/threads.profile \
-H "Authorization: Bearer $ANYAPI_KEY" \
-H "Content-Type: application/json" \
-d '{"username":"zuck"}'| Field | Type | Example value |
|---|---|---|
| Request body | ||
| username | string | "zuck"The Threads username to look up, without the @ prefix (e.g. zuck). |
| Response | ||
| data | object | |
| data.biography | string | Populated whenever the provider has data for the entity. |
| data.followerCount | integer | |
| data.fullName | string | Populated whenever the provider has data for the entity. |
| data.id | string | Populated whenever the provider has data for the entity. |
| data.isPrivate | boolean | |
| data.isVerified | boolean | |
| data.profilePicUrl | string | Populated whenever the provider has data for the entity. |
| data.username | string | Populated whenever the provider has data for the entity. |
| found | boolean | |
| Price | ||
| Price per request | USD | $0.0012 |
| Price /1k req | USD | $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.