# StableSocial Twitter User Tweets

> StableSocial Twitter User Tweets 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 tweets posted by a specified Twitter/X user handle, with optional response trimming.

## Facts

- Endpoint: POST https://stablesocial.dev/api/sc/twitter/user-tweets
- 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-twitter-user-tweets-965c11a7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JQD1rsaOnE8sTI9BJz4HK

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-twitter-user-tweets-965c11a7 -d '<json body>'
```

Example prompt: Pull the latest tweets from @elonmusk on Twitter and give me a trimmed-down summary of what he's been posting.

## When to prefer this

Choose this endpoint when you need tweet data from a specific Twitter/X user without setting up a Twitter Developer account or OAuth flow. It is ideal for pay-per-call scraping use cases where subscriptions are impractical, or when you need quick access to user tweet history for analysis, monitoring, or enrichment. Prefer this over official Twitter API integrations when you want zero-auth simplicity and per-request billing via USDC.

## Known failure modes

- Invalid or non-existent Twitter handle returns an error or empty result
- Rate limiting or upstream Twitter/X access restrictions may cause failures
- Payment not processed correctly results in 402 response
- Network timeout if the upstream scrape takes too long
- Trimmed vs full response may differ in available fields, causing downstream parsing issues

## 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 tweets from the specified Twitter/X user, including tweet content and associated metadata. If the trim flag is set to true, the response is a reduced, lighter version of the full payload.

## 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": "Twitter handle"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablesocial-twitter-user-tweets-965c11a7/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)
