# AIsa Payment Gateway - Twitter User Followings

> AIsa Payment Gateway - Twitter User Followings 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-13).

Retrieves a paginated list of Twitter accounts that a given user is following, sorted by most recent follow date first.

## Facts

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

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-followings-19e69187
```

Example prompt: Can you pull the followings list for the Twitter account @naval — start from the first page and get 200 results?

## When to prefer this

Use this endpoint when you need a paginated, date-sorted list of accounts a specific Twitter user follows, especially when you need to traverse the full following graph page by page. Prefer this over general Twitter scraping tools when you need reliable cursor-based pagination and consistent 200-record pages with x402 micropayment support.

## Known failure modes

- Invalid or non-existent Twitter screen name returns an error
- Expired or invalid cursor causes pagination failure
- pageSize outside the allowed range (20–200) is rejected
- Payment of 0.3 USDC not completed results in 402 response
- Rate limiting or API quota exceeded on the underlying Twitter API
- Private or suspended accounts may return empty or restricted results

## How this service works

Get user followings. Each page returns exactly 200 followings. Use cursor for pagination. Sorted by follow date. Most recent followings appear on the first page.

## Output

Returns a page of up to 200 Twitter accounts that the specified user follows, sorted by follow date with the most recently followed accounts appearing first. Includes a cursor value 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-followings-19e69187/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)
