# SocialFetch Threads Keyword Search

> SocialFetch Threads Keyword 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-14, last successful call 2026-08-04).

Search public Threads posts by keyword with optional date range filters

## Facts

- Endpoint: GET https://api.socialfetch.dev/v1/threads/search
- Price: $0.014/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Last successful call: 2026-08-04
- Success rate: 100% of calls made through Zero
- Rating: 3.0 / 5 from 1 review
- Activations on Zero: 16
- Tags: x402
- Canonical page: https://www.zero.xyz/c/socialfetch-threads-keyword-search-a89a3443
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aJRXjv8wTsYI-37yVWATw

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-keyword-search-a89a3443
```

Example prompt: Search Threads for public posts mentioning 'climate change' from January 1, 2024 to March 31, 2024 and show me what people are saying.

## When to prefer this

Use this endpoint when you need to search Threads posts by keyword across the public feed, especially with date-range filtering. Prefer this over profile-based endpoints when you don't have a specific account in mind but want topical or trending content from Threads. Choose this over scraping or manual lookup when you need structured, programmatic access to Threads search results.

## Known failure modes

- Empty query string or query exceeding 512 characters returns validation error
- Invalid date format (not YYYY-MM-DD) triggers schema validation failure
- No results found for niche or very recent query returns empty result set
- Rate limiting or payment failure (x402) if USDC balance is insufficient
- Threads API availability issues may cause upstream errors or timeouts

## How this service works

Search Threads posts by keyword.

## Output

A list of public Threads posts matching the search query, potentially including post text, author info, timestamps, and engagement metadata. If trim is enabled, returns a reduced response shape with fewer fields.

## 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": {
      "trim": {
       "anyOf": [
        {
         "type": "boolean"
        },
        {
         "enum": [
          "0",
          "1",
          "true",
          "false"
         ],
         "type": "string"
        }
       ],
       "description": "Whether to request a smaller response shape when available."
      },
      "query": {
       "type": "string",
       "maxLength": 512,
       "minLength": 1,
       "description": "Search query text for public Threads posts."
      },
      "endDate": {
       "type": "string",
       "pattern": "^\\d{4}-\\d{2}-\\d{2}$",
       "description": "Optional end date filter in YYYY-MM-DD format."
      },
      "startDate": {
       "type": "string",
       "pattern": "^\\d{4}-\\d{2}-\\d{2}$",
       "description": "Optional start date filter in YYYY-MM-DD format."
      }
     }
    }
   },
   "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-keyword-search-a89a3443/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)
