Threads API

Threads Search users API

Search Threads users by name or username and get normalized profile records: username, full name, verification, and picture.

POST/v1/run/threads.search_users
Requests
-
30d

Provider network

Providers ranked by traffic

Providers
Fox- served- uptime- p50-$3.60/1k reqflatGiraffeTried first- served- uptime- p50-$1.20/1k reqflat

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": {
    "users": [
      {
        "fullName": "Alex Rivera",
        "id": "a1b2c3d4",
        "isVerified": true,
        "profilePicUrl": "https://example.com/page",
        "username": "alex_rivera"
      }
    ]
  },
  "found": true
}
Response interface
interface ThreadsSearchUsersResponse {
  data: {
    users: {
      fullName: string;
      id: string;
      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.search_users
curl -X POST https://api.getanyapi.com/v1/run/threads.search_users \
  -H "Authorization: Bearer $ANYAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"shams"}'
FieldTypeExample value
Request body
querystring"shams"The name or username to search Threads users for.
Response
dataobject
data.usersobject[]Populated whenever the provider has data for the entity.
data.users[].fullNamestringPopulated whenever the provider has data for the entity.
data.users[].idstringPopulated whenever the provider has data for the entity.
data.users[].isVerifiedboolean
data.users[].profilePicUrlstringPopulated whenever the provider has data for the entity.
data.users[].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 Search users API

The AnyAPI Threads Search users API returns Threads search users data as normalized JSON from one POST call to /v1/run/threads.search_users. Search Threads users by name or username and get normalized profile records: username, full name, verification, and picture. 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.

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.

Search Threads users by name or username and get normalized profile records: username, full name, verification, and picture. 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.