# AIsa Payment Gateway - Tweet Retweeters Lookup

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

Retrieves a paginated list of users who retweeted a specific tweet, ordered by retweet time descending, returning ~100 retweeters per page.

## Facts

- Endpoint: GET https://pay.lnpay.ai/twitter/tweet/retweeters
- Price: $0.18/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-tweet-retweeters-lookup-5d4dcdf6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cYsoaaGIkhGNnUOtfaIt8

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-tweet-retweeters-lookup-5d4dcdf6
```

Example prompt: Can you pull the list of people who retweeted tweet ID 1846987139428634858? Start from the beginning (empty cursor) and get the first page of retweeters.

## When to prefer this

Use this endpoint when you need to enumerate users who retweeted a specific tweet on Twitter/X, especially for engagement analysis, audience research, or building lists of amplifiers. Prefer this over search-based approaches when you have a specific tweet ID and need ordered, paginated retweet data.

## Known failure modes

- Invalid or non-existent tweet ID returns an error or empty result
- Expired or invalid cursor causes pagination failure
- Rate limiting or payment failure (402) blocks the request
- Private or deleted tweet may return no retweeters
- Network timeout on large retweet sets

## How this service works

Get tweet retweeters by tweet id. Each page returns about 100 retweeters. Use cursor for pagination. Order by retweet time desc

## Output

A paginated list of approximately 100 users who retweeted the specified tweet, sorted by retweet time in descending order (most recent first), along with a cursor value for fetching the next page.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "tweetId"
 ],
 "properties": {
  "cursor": {
   "type": "string",
   "description": "The cursor to paginate through the results. First page is \"\"."
  },
  "tweetId": {
   "type": "string",
   "description": "The tweet ID to get. eg. 1846987139428634858"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/aisa-payment-gateway-tweet-retweeters-lookup-5d4dcdf6/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)
