# AIsa Payment Gateway - Twitter User Followers

> AIsa Payment Gateway - Twitter User Followers is a paid API for AI agents from pay.lnpay.ai, paid per call via x402, $0.3/call, status unknown (last checked 2026-09-15).

Retrieves a paginated list of a Twitter user's followers in reverse chronological order (newest first), returning up to 200 followers per page.

## Facts

- Endpoint: GET https://pay.lnpay.ai/twitter/user/followers
- Price: $0.3/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/aisa-payment-gateway-twitter-user-followers-3107f5bb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_E_b9sopUVunhdCx9_oANW

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 aisa-payment-gateway-twitter-user-followers-3107f5bb
```

Example prompt: Can you get me the most recent 200 followers of the Twitter account @elonmusk, starting from the first page?

## When to prefer this

Use this endpoint when you need to retrieve a Twitter user's followers in reverse chronological order (newest first) with pagination support. Prefer this over followings or verified-followers endpoints when you want the full general follower list. It returns up to 200 followers per page, making it efficient for bulk retrieval.

## Known failure modes

- Invalid or non-existent username returns an error or empty result
- Missing required userName parameter returns a validation error
- Cursor value invalid or expired causes pagination failure
- Page size outside allowed range (20-200) returns a parameter error
- Payment failure (x402) if USDC payment not completed
- Rate limiting from underlying Twitter API causing errors

## How this service works

Get user followers in reverse chronological order (newest first). Returns exactly 200 followers per page, sorted by follow date. Most recent followers appear on the first page. Use cursor for pagination through the complete followers list.

## Output

Returns up to 200 Twitter follower records per page sorted by follow date descending (newest first), along with a pagination cursor to fetch subsequent pages.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "userName"
 ],
 "properties": {
  "cursor": {
   "type": "string",
   "description": "The cursor to paginate through the results. First page is \"\"."
  },
  "pageSize": {
   "type": "integer",
   "description": "The number of followings to return per page. Default is 200. min 20, max 200"
  },
  "userName": {
   "type": "string",
   "description": "screen name of the user"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/aisa-payment-gateway-twitter-user-followers-3107f5bb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pay.lnpay.ai](https://www.zero.xyz/host/pay.lnpay.ai/llms.txt)
