# AIsa Payment Gateway - Twitter Tweet Quotes Fetcher

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

Fetches paginated quotes (retweets with comments) for a given tweet ID, returning 20 quotes per page ordered by quote time descending

## Facts

- Endpoint: GET https://pay.lnpay.ai/twitter/tweet/quotes
- Price: $0.03/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-tweet-quotes-fetcher-689a71eb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jKFwQZnTjahF-7TiU2VzB

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-tweet-quotes-fetcher-689a71eb
```

Example prompt: Can you pull the first page of quotes for tweet ID 1846987139428634858, including replies, from after January 1 2024?

## When to prefer this

Use this endpoint when you need to retrieve quote tweets (quote-retweets) for a specific tweet, especially when you want paginated results ordered by recency. Prefer this over general search when you have a specific tweet ID and want to track how others are quoting it. Ideal for monitoring tweet engagement, content research, or social listening on a specific post.

## Known failure modes

- Invalid or non-existent tweet ID returns empty results or error
- Missing required tweetId parameter returns 400 bad request
- Payment not provided or insufficient returns 402 payment required
- Invalid cursor string causes pagination failure
- sinceTime/untilTime range yields no results if no quotes exist in that window
- Rate limiting or upstream Twitter API errors may cause 5xx responses

## How this service works

Get tweet quotes by tweet id. Each page returns exactly 20 quotes. Use cursor for pagination. Order by quote time desc

## Output

A paginated list of up to 20 quote tweets for the specified tweet ID, ordered by quote time descending. Each item includes the quoting tweet's content, author, and timestamp. A cursor is provided to fetch the next page of results.

## 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"
  },
  "sinceTime": {
   "type": "integer",
   "description": "On or after a specified unix timestamp in seconds."
  },
  "untilTime": {
   "type": "integer",
   "description": "Before a specified unix timestamp in seconds."
  },
  "includeReplies": {
   "type": "boolean",
   "description": "Whether to include replies in the results. Default is True."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/aisa-payment-gateway-twitter-tweet-quotes-fetcher-689a71eb/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)
