# GEDX402 Social – Twitter Followers Lookup

> GEDX402 Social – Twitter Followers Lookup 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-13).

Retrieves the followers list for a given Twitter/X user ID via SociaVault, paginated via cursor, with one x402 micropayment per call.

## Facts

- Endpoint: GET https://social.gedx402.com/v1/sociavault/twitter/followers
- Price: $0.014/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gedx402-social-twitter-followers-lookup-456ba8e9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lfscO_tfESks3glbJz-di

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-followers-lookup-456ba8e9
```

Example prompt: Can you pull the followers list for Twitter user ID 12345678 via SociaVault? Start from the beginning (no cursor needed).

## When to prefer this

Use this endpoint when you need to programmatically fetch the followers of a specific Twitter/X user by their user ID, especially in workflows requiring per-call micropayments via x402. Prefer this over scraping or official Twitter API when you need a proxy-based pay-as-you-go model without managing OAuth credentials.

## Known failure modes

- Invalid or missing user_id returns an error or empty data object
- Invalid cursor value may result in failed pagination
- x402 payment not processed leads to 402 response and no data returned
- Twitter rate limits or SociaVault upstream errors may return partial or empty data

## How this service works

SociaVault social data ingest — profile, posts, transcript, and full API proxy. One x402 payment per outcome.

## Output

Returns a JSON object with a 'data' field containing follower records, a 'success' boolean, and a 'provider' field ('sociavault'). Paginate using the cursor parameter for subsequent pages.

## 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-followers-lookup-456ba8e9/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)
