# GEDX402 Social — Twitter Followings Lookup

> GEDX402 Social — Twitter Followings 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-15).

Fetches the list of Twitter accounts that a given user is following, paginated via cursor, using the SociaVault proxy.

## Facts

- Endpoint: GET https://social.gedx402.com/v1/sociavault/twitter/followings
- Price: $0.014/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gedx402-social-twitter-followings-lookup-27a7e5cf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Gp7b8SnY0D4Uh1L-yOMQ3

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-followings-lookup-27a7e5cf
```

Example prompt: Pull the Twitter followings list for user ID 12345678 from SociaVault — start from the beginning (no cursor) so I can see who they follow.

## When to prefer this

Use this endpoint when you need to retrieve the following graph (accounts a user follows) for a specific Twitter user ID and are operating in an x402 micropayment environment. Prefer this over scraping or direct Twitter API when you need a pay-per-call model without managing OAuth credentials.

## Known failure modes

- Invalid or missing user_id returns an error or empty data
- Invalid cursor value may cause pagination failure
- User account is private or suspended, resulting in empty or error response
- Rate limit or quota exceeded on the underlying SociaVault proxy
- Payment failure via x402 protocol prevents request from being fulfilled

## 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 the paginated list of Twitter accounts the specified user follows, a success boolean, and provider confirmation ('sociavault'). May include a next cursor for further pagination.

## 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-followings-lookup-27a7e5cf/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)
