# StableSocial Threads Search

> StableSocial Threads Search is a paid API for AI agents from stablesocial.dev, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-13).

Search Threads posts by keyword with optional date range filtering, returning social media post data pay-per-request.

## Facts

- Endpoint: POST https://stablesocial.dev/api/sc/threads/search
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablesocial-threads-search-0a11e216
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Qj5W-MbYyM1aeEzVW-rVQ

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 stablesocial-threads-search-0a11e216 -d '<json body>'
```

Example prompt: Search Threads for posts mentioning 'generative AI' from January 1 2025 to March 31 2025 and give me a trimmed-down version of the results.

## When to prefer this

Choose this endpoint when you need pay-per-request, no-subscription access to Threads post search without setting up OAuth or managing API keys. Ideal for lightweight social listening, one-off keyword research, or agent workflows that occasionally need Threads data without committing to a recurring plan. Prefer over scraping solutions when you need structured results and date filtering.

## Known failure modes

- Empty results if no posts match the keyword and date range
- Invalid date format causing a 400 or error response
- Missing required query field results in validation error
- Payment failure via x402 protocol blocks the request
- Rate limiting or upstream Threads API unavailability causing errors

## How this service works

Pay-per-request access to social media data from TikTok, Instagram, Facebook, Reddit, and LinkedIn. No auth, no subscriptions.

## Output

Returns a list of Threads posts matching the search keyword, optionally filtered by date range. Each result typically includes post content and metadata. When trim is set to true, a condensed version of the response is returned with fewer fields.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "trim": {
   "type": "boolean",
   "description": "Set to true for a trimmed down version of the response"
  },
  "query": {
   "type": "string",
   "minLength": 1,
   "description": "Keyword to search for"
  },
  "end_date": {
   "type": "string",
   "description": "End date to search for"
  },
  "start_date": {
   "type": "string",
   "description": "Start date to search for"
  }
 }
}
```

## More

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