# X Data Gateway – Get User Followers

> X Data Gateway – Get User Followers is a paid API for AI agents from x-data-gateway.annushka1190.workers.dev, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-13).

Fetches a paginated list of followers for a given Twitter/X user by their numeric user ID, returning follower IDs and usernames in real-time.

## Facts

- Endpoint: GET https://x-data-gateway.annushka1190.workers.dev/users/followers
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x-data-gateway-get-user-followers-29448b9b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nsdeuw83UuQxadpPyARe0

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 x-data-gateway-get-user-followers-29448b9b
```

Example prompt: Can you pull the list of followers for X user ID 44196397 and tell me their usernames?

## When to prefer this

Use this endpoint when you need real-time Twitter/X follower data without setting up a Twitter developer account or managing API keys — especially for AI agents that can pay per request in USDC via x402. Ideal for one-off lookups, agent workflows, or situations where provisioning OAuth credentials is impractical.

## Known failure modes

- Invalid or non-numeric user ID returns an error response
- Private/protected accounts may return empty or restricted follower data
- Payment failure (insufficient USDC) blocks the request with a 402 response
- Rate limits on the underlying Twitter/X API may cause temporary unavailability
- User ID that does not exist returns an empty data array or 404-style error

## How this service works

One page of followers by numeric user ID. e.g. GET /users/followers?id=44196397

## Output

Returns a JSON object with a `data` array of follower objects (each containing `id` and `username`) and a `meta` object with a `next_token` for pagination through additional followers.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "id"
     ],
     "properties": {
      "id": {
       "type": "string",
       "description": "Numeric X user ID"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {}
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x-data-gateway-get-user-followers-29448b9b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x-data-gateway.annushka1190.workers.dev](https://www.zero.xyz/host/x-data-gateway.annushka1190.workers.dev/llms.txt)
