# AIsa Payment Gateway - Get Tweets by ID

> AIsa Payment Gateway - Get Tweets by ID is a paid API for AI agents from pay.lnpay.ai, paid per call via x402, $0.0015/call, status unknown (last checked 2026-09-15).

Fetches full tweet data for one or more tweet IDs supplied as a comma-separated string

## Facts

- Endpoint: GET https://pay.lnpay.ai/twitter/tweets
- Price: $0.0015/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-get-tweets-by-id-05d97b64
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VHEvhK9WS_38zoHgkXAg3

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-tweets-by-id-05d97b64
```

Example prompt: Can you look up these tweets for me and show me their content: 1846987139428634858, 1866332309399781537, and 1868244766405870076?

## When to prefer this

Use this endpoint when you already have specific tweet IDs and need to retrieve their full content and metadata. Prefer this over search or mention endpoints when you know the exact tweet IDs you want to look up. Ideal for batch retrieval of up to several tweets at once via a comma-separated list.

## Known failure modes

- Invalid or malformed tweet ID returns an error or empty result
- Deleted or suspended tweets return not-found responses
- Rate limiting or payment failure returns a 402 error
- Comma formatting issues in tweet_ids may cause parse errors
- Private or restricted tweets may not be accessible

## How this service works

Get tweet by tweet ids

## Output

Returns tweet objects for each requested tweet ID, including tweet text, metadata, and other available tweet-level fields from the Twitter API.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "tweet_ids"
 ],
 "properties": {
  "tweet_ids": {
   "type": "string",
   "description": "The tweet ids to get. eg. 1846987139428634858,1866332309399781537,1868244766405870076. Use comma to separate multiple tweet ids"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/aisa-payment-gateway-get-tweets-by-id-05d97b64/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)
