# AIsa Payment Gateway - Get Verified Followers

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

Retrieves a paginated list of a Twitter/X user's verified followers in reverse chronological order, returning 20 per page

## Facts

- Endpoint: GET https://pay.lnpay.ai/twitter/user/verified-followers
- Price: $0.06/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-get-verified-followers-f30df7f6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zkFycVVZBdCJ091DXG706

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-get-verified-followers-f30df7f6
```

Example prompt: Show me the most recent verified followers for Twitter user ID 44196397 — start from the first page.

## When to prefer this

Use this endpoint when you specifically need to identify verified/notable followers of a Twitter user, rather than all followers. Ideal for influencer analysis, audience credibility assessment, or tracking when high-profile accounts follow someone. Prefer this over the general followers endpoint when filtering for verified accounts matters.

## Known failure modes

- Invalid or non-existent user_id returns an error or empty result
- Expired or invalid cursor causes pagination to fail or restart
- Rate limiting or payment failure (insufficient USDC balance) returns a 402 error
- Private or suspended accounts may return no followers
- Empty result set when user has no verified followers

## How this service works

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

## Output

Returns a paginated list of up to 20 verified (blue-check) followers of the specified user, sorted by follow date with the most recent first. Each page includes follower profile data and a cursor token to fetch the next page.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "user_id"
 ],
 "properties": {
  "cursor": {
   "type": "string",
   "description": "The cursor to paginate through the results. First page is \"\"."
  },
  "user_id": {
   "type": "string",
   "description": "user_id of the user"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/aisa-payment-gateway-get-verified-followers-f30df7f6/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)
