# StableSocial Threads User Posts

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

Fetches posts from a Threads user's profile by username, with an optional trimmed response mode

## Facts

- Endpoint: POST https://stablesocial.dev/api/sc/threads/user/posts
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablesocial-threads-user-posts-de65a793
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xAAEvLPN1Dp9cWRKrSM-N

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-user-posts-de65a793 -d '<json body>'
```

Example prompt: Pull all posts from the Threads user @zuck and give me a trimmed version of the results.

## When to prefer this

Choose this endpoint when you need pay-per-request, no-subscription access to Threads user post data without setting up OAuth or API credentials. It is ideal for one-off lookups, lightweight automation, or agent workflows where Threads-specific scraping is needed and you want to avoid the overhead of managing Meta API tokens. Use trim=true when you only need core post fields and want to minimize payload size.

## Known failure modes

- Invalid or non-existent Threads handle returns empty result or error
- Private Threads accounts may not return post data
- Payment failure (402) if USDC not provided or insufficient
- Rate limiting or scraping blocks from Meta infrastructure may cause intermittent failures
- Malformed handle input (e.g. including @ symbol or spaces) may cause request 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 posts from the specified Threads user's profile. In full mode, includes rich post metadata; with trim=true, returns a condensed subset of fields for lighter payloads. Typical fields include post text, timestamps, engagement metrics, and media references.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "trim": {
   "type": "boolean",
   "description": "Set to true for a trimmed down version of the response"
  },
  "handle": {
   "type": "string",
   "minLength": 1,
   "description": "Threads username"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablesocial-threads-user-posts-de65a793/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)
