# GEDX402 Social – Twitter All Tweets by User

> GEDX402 Social – Twitter All Tweets by User is a paid API for AI agents from social.gedx402.com, paid per call via x402, $0.014/call, status unknown (last checked 2026-09-14).

Fetches all tweets for a given Twitter/X user ID via the SociaVault data proxy, paginated by cursor, with a single x402 micropayment per call.

## Facts

- Endpoint: GET https://social.gedx402.com/v1/sociavault/twitter/user-tweets-all
- Price: $0.014/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gedx402-social-twitter-all-tweets-by-user-a309e8ea
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RfxO8MbYxEGsI-M3AB1UZ

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 gedx402-social-twitter-all-tweets-by-user-a309e8ea
```

Example prompt: Pull all tweets for Twitter user ID 123456789 through SociaVault — start from the beginning with no cursor and keep paginating until you have everything.

## When to prefer this

Use this endpoint when you need to retrieve all tweets for a specific Twitter/X user by user ID and want micropayment-gated access (x402/USDC) without managing Twitter API credentials directly. Prefer this over direct Twitter API when you need a pay-per-call model and SociaVault's proxy layer.

## Known failure modes

- Invalid or non-existent user_id returns empty data or error
- Missing payment triggers 402 response before data is returned
- Invalid cursor value causes pagination to fail or restart
- Rate limits or upstream Twitter restrictions may result in partial data
- Network timeouts on large accounts with many tweets

## How this service works

SociaVault API proxy — twitter-user-tweets-all. Query/body matches https://docs.sociavault.com/api-reference/openapi.json. GET/POST per route; x402 per call. $0.014 USDC per request.

## Output

A JSON object with a 'data' field containing the tweets retrieved, a 'success' boolean, and a 'provider' field set to 'sociavault'. Pagination is handled via cursor.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "cursor": {
   "type": "string"
  },
  "user_id": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {},
  "success": true,
  "provider": "sociavault"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gedx402-social-twitter-all-tweets-by-user-a309e8ea/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from social.gedx402.com](https://www.zero.xyz/host/social.gedx402.com/llms.txt)
