# SocialFetch Threads User Search

> SocialFetch Threads User Search is a paid API for AI agents from api.socialfetch.dev, paid per call via x402, $0.014/call, status unknown (last checked 2026-09-13).

Search Threads users by keyword and return matching user profiles.

## Facts

- Endpoint: GET https://api.socialfetch.dev/v1/threads/users/search
- Price: $0.014/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/socialfetch-threads-user-search-58f65ebb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cGHTXYSONtu6K1xxjxJ3U

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability socialfetch-threads-user-search-58f65ebb
```

Example prompt: Search Threads for users related to 'sustainable fashion' — I want to find accounts posting about eco-friendly clothing brands.

## When to prefer this

Use this endpoint when you need to discover or enumerate Threads user accounts matching a keyword, topic, or name — particularly for influencer research, competitive analysis, or finding community members on Threads. Prefer this over scraping or manual search when programmatic access is needed.

## Known failure modes

- Empty results if query matches no Threads users
- Query too short or too long (minLength 1, maxLength 512) returns validation error
- Threads API rate limiting or platform unavailability causes downstream failure
- Payment failure (x402) if USDC balance is insufficient
- Invalid or missing query parameter returns 400-level error

## How this service works

Search Threads users by keyword.

## Output

A list of Threads user profiles matching the search query, likely including usernames, display names, bios, and profile metadata for each result.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "query"
     ],
     "properties": {
      "query": {
       "type": "string",
       "maxLength": 512,
       "minLength": 1,
       "description": "Search query text for Threads users."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/socialfetch-threads-user-search-58f65ebb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.socialfetch.dev](https://www.zero.xyz/host/api.socialfetch.dev/llms.txt)
